-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
34 lines (34 loc) · 917 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
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:import/recommended' /*, 'plugin:@typescript-eslint/recommended-requiring-type-checking' */],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
root: true,
settings: {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
overrides: [
{
"files": ['*.ts', '*.tsx'],
"parserOptions": {
"project": ['./tsconfig.json']
}
}
],
rules: {
// "@typescript-eslint/restrict-template-expressions": "off",
"import/no-default-export": "error",
"no-else-return": ["error"],
"complexity": ["warn", { "max": 23 }],
"no-var": ["warn"],
"dot-notation": ["warn"],
"vars-on-top": ["warn"],
"prefer-const": ["warn"],
"camelcase": ["warn"],
"no-multi-spaces": ["warn"],
"quotes": ["warn", "single", { "avoidEscape": true }]
}
};