-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.json
43 lines (43 loc) · 986 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
39
40
41
42
43
{
"parser": "@typescript-eslint/parser",
"extends": ["alloy", "alloy/typescript"],
"plugins": ["@typescript-eslint"],
"env": {
"browser": true,
"node": true,
"commonjs": true,
"es6": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2022
},
"root": true,
"rules": {
"no-duplicate-imports": 0,
"for-direction": "error",
"getter-return": [
"error",
{
"allowImplicit": false
}
],
"no-await-in-loop": "off",
"no-compare-neg-zero": "error",
"no-cond-assign": ["error", "except-parens"],
"no-console": "off",
"no-constant-condition": [
"error",
{
"checkLoops": false
}
],
"semi": [2, "never"],
"no-control-regex": "error",
"no-debugger": "error",
"no-dupe-args": "error",
"no-dupe-keys": "error",
"max-nested-callbacks": ["error", 5],
"@typescript-eslint/consistent-type-definitions": ["error", "interface"]
}
}