Created
October 6, 2020 15:51
-
-
Save victor3r/7de1420573a758f85026ef6854bbf971 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { resolve } = require('path'); | |
module.exports = { | |
env: { | |
browser: true, | |
es6: true, | |
jest: true, | |
}, | |
globals: { | |
Atomics: 'readonly', | |
SharedArrayBuffer: 'readonly', | |
}, | |
parserOptions: { | |
ecmaVersion: 2018, | |
ecmaFeatures: { | |
jsx: true, | |
tsx: true, | |
}, | |
sourceType: 'module', | |
project: resolve(__dirname, 'tsconfig.json'), | |
}, | |
parser: '@typescript-eslint/parser', | |
plugins: [ | |
'@typescript-eslint', | |
'import', | |
'import-helpers', | |
'react-hooks', | |
'jest', | |
'prettier', | |
], | |
extends: [ | |
'airbnb', | |
'plugin:@typescript-eslint/recommended', | |
'prettier/@typescript-eslint', | |
'plugin:prettier/recommended', | |
], | |
rules: { | |
'prettier/prettier': 'error', | |
'class-methods-use-this': 'off', | |
'@typescript-eslint/no-explicit-any': 'off', | |
'@typescript-eslint/interface-name-prefix': 'off', | |
'@typescript-eslint/no-var-requires': 'off', | |
'@typescript-eslint/camelcase': 'off', | |
'@typescript-eslint/explicit-function-return-type': 'off', | |
'react/jsx-filename-extension': [ | |
'warn', | |
{ | |
extensions: ['.jsx', '.tsx'], | |
}, | |
], | |
'import-helpers/order-imports': [ | |
'warn', | |
{ | |
'newlines-between': 'always', | |
groups: [ | |
['/^react/'], | |
['builtin', 'external', 'internal'], | |
'/^@/', | |
['parent', 'sibling', 'index'], | |
], | |
alphabetize: { order: 'asc', ignoreCase: true }, | |
}, | |
], | |
'import/no-dynamic-require': 'off', | |
'no-param-reassign': 'off', | |
'no-unused-expressions': 'off', | |
'no-underscore-dangle': 'off', | |
'react/prop-types': 'off', | |
'jsx-a11y/label-has-for': 'off', | |
'import/prefer-default-export': 'off', | |
'react-hooks/rules-of-hooks': 'error', | |
'react-hooks/exhaustive-deps': 'warn', | |
'import/no-extraneous-dependencies': ['error', { devDependencies: true }], | |
'import/extensions': [ | |
'error', | |
'ignorePackages', | |
{ | |
ts: 'never', | |
tsx: 'never', | |
}, | |
], | |
}, | |
settings: { | |
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'], | |
'import/parsers': { | |
'@typescript-eslint/parser': ['.ts', '.tsx'], | |
}, | |
'import/resolver': { | |
typescript: {}, | |
}, | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment