-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
43 lines (43 loc) · 1.02 KB
/
.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 = {
env: {
browser: true,
es2021: true,
node: true,
jest: true
},
extends: ['airbnb-base', 'prettier'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module'
},
plugins: ['@typescript-eslint', 'import'],
rules: {
semi: 'error',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['error'],
'import/extensions': 'off',
'import/prefer-default-export': 'off',
'object-curly-newline': 'off',
'class-methods-use-this': 'off',
'no-shadow': 'off',
'no-console': 'off',
'arrow-body-style': 'off',
'no-useless-constructor': 'off',
'no-use-before-define': 'off',
'func-names': 'off',
'no-restricted-syntax': 'off',
'consistent-return': 'off',
'import/no-extraneous-dependencies': 'off'
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx']
},
'import/resolver': {
typescript: {
alwaysTryTypes: true
}
}
}
};