-
Notifications
You must be signed in to change notification settings - Fork 20
/
.eslintrc.js
50 lines (50 loc) · 1.23 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
44
45
46
47
48
49
50
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',
'import/no-extraneous-dependencies': 'off',
'no-undef': 'off',
'object-shorthand': 'off',
'no-await-in-loop': 'off',
'consistent-return': 'off',
'no-restricted-syntax': 'off',
'prefer-destructuring': 'off',
'func-names': 'off',
'global-require': 'off',
'no-underscore-dangle': 'off',
'import/named': 'off',
'no-use-before-define': 'off',
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {
alwaysTryTypes: true,
},
},
},
};