My personal ESLint configurations
eslint
configurations
eslint >7.X.X
Install
$ npm install -D eslint-config-thealexpatin
Create .eslintrc.js
// .eslintrc.js
module.exports = {
extends: ["thealexpatin/<extension name>"],
};
es6
typescript
react
(for ES6)react-with-typescript
react-native
(for ES6)react-native-with-typescript
vue
(for ES6)vue-with-typescript
// .eslintrc.js
module.exports = {
extends: ["thealexpatin/typescript"],
};
// .eslintrc.js
module.exports = {
extends: ["thealexpatin/react-with-typescript"],
};