-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
43 lines (42 loc) · 969 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'airbnb',
'airbnb/hooks',
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'plugin:jsx-a11y/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
],
plugins: ['@typescript-eslint', 'react', 'jsx-a11y', 'import'],
env: {
browser: true,
es2021: true,
},
settings: {
react: {
version: 'detect',
},
'import/resolver': {
typescript: {},
},
},
rules: {
'react/jsx-filename-extension': [
1,
{ extensions: ['.tsx', '.ts'] },
],
'import/extensions': [
'error',
'ignorePackages',
{
ts: 'never',
tsx: 'never',
},
],
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
},
};