-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
49 lines (49 loc) · 1.01 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
module.exports = {
extends: [
'plugin:import/recommended',
'plugin:import/typescript',
'airbnb-base',
'airbnb-typescript/base',
'plugin:@typescript-eslint/recommended-type-checked',
'plugin:@typescript-eslint/stylistic-type-checked',
],
parserOptions: {
project: './tsconfig.eslint.json',
},
plugins: [
'@typescript-eslint',
'import',
],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts'],
},
'import/resolver': {
typescript: {
alwaysTryTypes: true,
},
},
},
rules: {
indent: 'off',
'no-tabs': 'off',
'no-restricted-syntax': 'off',
'@typescript-eslint/indent': ['error', 'tab'],
'no-plusplus': ['error', {
allowForLoopAfterthoughts: true,
}],
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
ts: 'never',
},
],
'import/no-extraneous-dependencies': 'off',
'import/prefer-default-export': 'off',
'class-methods-use-this': 'off',
'no-console': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
};