-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
.eslintrc
39 lines (39 loc) · 1.29 KB
/
.eslintrc
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
{
"env": {
"browser": true,
"amd": true,
"node": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:import/typescript",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"plugins": [
"import"
],
"parserOptions": {
"project": ["./tsconfig.json"]
},
"rules": {
"semi": ["error", "always"],
"quotes": ["error", "double"],
"indent": ["error", 4],
"no-implicit-globals": 2,
"no-restricted-globals": 2,
"no-shadow": 2,
"@typescript-eslint/no-explicit-any": ["off"],
"@typescript-eslint/no-unsafe-assignment": ["off"],
"@typescript-eslint/restrict-template-expressions": ["off"],
"@typescript-eslint/no-unsafe-member-access": ["off"],
"@typescript-eslint/no-unsafe-return": ["off"],
"@typescript-eslint/no-unsafe-argument": ["off"],
"@typescript-eslint/no-non-null-assertion": ["off"],
"@typescript-eslint/no-use-before-define": ["error", { "functions" : false }],
"@typescript-eslint/no-unsafe-call": ["off"]
}
}