forked from antvis/GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
41 lines (41 loc) · 1002 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
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': ['warn'],
'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-unused-expressions': 'off',
"no-dupe-class-members": "off",
"@typescript-eslint/no-dupe-class-members": ["error"]
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {
alwaysTryTypes: true,
},
},
},
};