-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
59 lines (58 loc) · 1.83 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"no-await-in-loop": "warn",
"no-duplicate-imports": "warn",
"no-promise-executor-return": "warn",
"no-self-compare": "warn",
"no-template-curly-in-string": "warn",
"block-scoped-var": "warn",
"default-case-last": "warn",
"default-param-last": "warn",
"dot-notation": "warn",
"eqeqeq": "warn",
"multiline-comment-style": "warn",
"new-cap": "warn",
"no-array-constructor": "warn",
"no-else-return": "warn",
"no-empty-function": "warn",
"no-extend-native": "warn",
"no-extra-bind": "warn",
"no-extra-label": "warn",
"no-implied-eval": "warn",
"no-inline-comments": "warn",
"no-labels": "warn",
"no-lone-blocks": "warn",
"no-lonely-if": "warn",
"no-loop-func": "warn",
"no-multi-assign": "warn",
"no-new": "warn",
"no-new-func": "warn",
"no-new-object": "warn",
"no-new-wrappers": "warn",
"no-return-assign": "warn",
"no-throw-literal": "warn",
"no-undef-init": "warn",
"no-unneeded-ternary": "warn",
"no-useless-call": "warn",
"no-useless-computed-key": "warn",
"no-useless-concat": "warn",
"no-useless-constructor": "warn",
"no-useless-rename": "warn",
"no-var": "warn",
"no-void": "warn",
"operator-assignment": "warn",
"prefer-const": "warn",
"prefer-object-spread": "warn",
"prefer-rest-params": "warn",
"prefer-spread": "warn",
"prefer-template": "warn",
"require-await": "warn",
"spaced-comment": "warn",
"yoda": "warn"
}
}