-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
38 lines (38 loc) · 1013 Bytes
/
.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
{
"env": {
"es2022": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"overrides": [
{
"files": "{scripts,functions}/*",
"env": {
"node": true
}
}
],
"plugins": ["@typescript-eslint"],
"rules": {
"no-useless-escape": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"no-mixed-spaces-and-tabs": "warn",
"no-unreachable": "warn",
"no-extra-semi": "warn",
"@typescript-eslint/no-extra-semi": "warn",
"no-fallthrough": "off",
"no-empty": "warn",
"@typescript-eslint/no-empty-function": "warn",
"no-case-declarations": "off",
"prefer-const": "warn",
"@typescript-eslint/adjacent-overload-signatures": "warn",
"@typescript-eslint/no-inferrable-types": "warn",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-duplicate-enum-values": "off",
"@typescript-eslint/no-explicit-any": "warn"
}
}