-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
46 lines (46 loc) · 1.33 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
{
"root": true,
"env": {
"es6": true,
"node": true,
"jest/globals": true
},
"plugins": ["jest"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.eslint.json"
},
"rules": {
"no-case-declarations": "off",
"no-constant-condition": ["error", { "checkLoops": false }],
"semi": [
"error",
"never"
],
"quotes": ["error", "single"],
"indent": [ 2, "tab", { "SwitchCase": 1 } ],
"operator-linebreak": ["error", "before"],
"comma-dangle": [ "error", "always-multiline" ],
"quote-props": [ "error", "as-needed" ],
"array-bracket-spacing": ["error", "always", { "singleValue": false }],
"import/no-unresolved": [ 0 ],
"prefer-reflect": [ 0 ],
"no-undef": ["error", { "typeof": true }],
"no-console": "off",
"object-curly-spacing": ["error", "always"],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": ["warn", {
"allowArgumentsExplicitlyTypedAsAny": true,
"allowTypedFunctionExpressions": true
}],
"@typescript-eslint/restrict-template-expressions": ["error", {
"allowAny": true
}]
}
}