-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
46 lines (46 loc) · 1.26 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
40
41
42
43
44
45
46
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"semi": [
"warn",
"always"
],
"quotes": [
"warn",
"single"
],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": 1,
"@typescript-eslint/interface-name-prefix": "off",
"indent": [
"warn",
4
],
"no-unused-vars": "warn",
"no-var": "warn",
"keyword-spacing": "warn",
"space-before-function-paren": "warn",
"space-infix-ops": "warn",
"comma-spacing": "warn",
"operator-linebreak": "warn",
"no-cond-assign": "warn",
"block-spacing": "warn",
"eol-last": "warn",
"func-call-spacing": "warn",
"new-parens": "warn",
"no-const-assign": "warn",
"no-new": "warn",
"no-unneeded-ternary": "warn",
"no-unreachable": "warn",
"spaced-comment": "warn"
}
}