-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
53 lines (53 loc) · 1.5 KB
/
.eslintrc.json
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
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": ["@typescript-eslint/eslint-plugin"],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"root": true,
"env": {
"node": true,
"jest": true
},
"rules": {
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"semi": "error",
"no-template-curly-in-string": "error",
"no-caller": "error",
"no-empty-function": [
"warn",
{ "allow": ["constructors"] }
],
"no-eval": "error",
"no-fallthrough": "off",
"no-invalid-this": "error",
"no-lone-blocks": "warn",
"no-return-await": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-throw-literal": "error",
"no-use-before-define": [ "error", { "functions": true, "classes": false } ],
"no-unused-expressions": "error",
"require-await": "warn",
"radix": [ "error", "always" ],
"yoda": "error",
"array-bracket-spacing": ["error", "always"],
"block-spacing": "error",
"brace-style": "error",
"camelcase": "error",
"comma-dangle": [ "error", "always-multiline" ],
"comma-spacing": "error",
"max-depth": [ "error", 2 ],
"no-lonely-if": "error",
"no-unneeded-ternary": "error"
}
}