-
Notifications
You must be signed in to change notification settings - Fork 19
/
.eslintrc
40 lines (40 loc) · 1015 Bytes
/
.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
{
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.json"
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [],
"env": {},
"rules": {
"no-debugger": "error",
"no-plusplus": "error",
"no-bitwise": "error",
"no-new-wrappers": "error",
"constructor-super": "error",
"no-eval": "error",
"no-template-curly-in-string": "error",
"no-return-await": "error",
"no-sparse-arrays": "error",
"dot-notation": "error",
"no-fallthrough": "error",
"prefer-const": "error",
"eqeqeq": "error",
"no-extra-bind": "error",
"use-isnan": "error",
"@typescript-eslint/strict-boolean-expressions": [
2,
{
"allowString": false,
"allowNumber": false,
"allowNullableObject": true,
"allowNullableBoolean": false,
"allowNullableString": false,
"allowNullableNumber": false,
"allowAny": false
}
]
}
}