-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
52 lines (47 loc) · 1.33 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
51
52
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
parserOptions: {
ecmaFeatures: {
jsx: true
}
},
project: './tsconfig.eslint.json',
},
env: {
node: true,
es6: true
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking'
],
plugins: [
'@typescript-eslint'
],
rules: {
'no-console': 'warn',
'no-trailing-spaces': "error",
'comma-spacing': 'error',
'keyword-spacing': 'error',
'eol-last': 'error',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/indent': ['error', 2],
'@typescript-eslint/quotes': ['error', 'single'],
'@typescript-eslint/brace-style': ['error'],
'@typescript-eslint/semi': ['error'],
// FOLLOWING RULES DISABLE RECOMMENDED BEST PRACTICES
// ADDED AFTER UPGRADE TO v3
// TODO: Study alternatives not to use them
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/restrict-template-expressions': ['error', {
allowAny: true,
}],
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'warn',
},
};