-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
35 lines (35 loc) · 1.03 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
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"brace-style": [1, "1tbs"],
"indent": [1, 4, {
"SwitchCase": 1
}],
"lines-between-class-members": [1, "always", {
"exceptAfterSingleLine": true
}],
"quotes": [1, "double"],
"require-yield": 0,
"semi": [1, "always"],
"sort-imports": [1, {
"ignoreDeclarationSort": true
}],
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-floating-promises": 2,
"@typescript-eslint/no-inferrable-types": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-unused-vars": 0 // Covered by TypeScript compiler
}
}