-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
42 lines (42 loc) · 1.2 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
36
37
38
39
40
41
42
{
"ignorePatterns": [
"webpack.config.js",
"sandbox/**/*.*"
],
"env": {
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"prefer-arrow-callback": "error",
"func-style": ["error", "expression"],
"no-param-reassign": "error",
"no-shadow": "error",
"no-console": "error",
"max-classes-per-file": "error",
"no-empty": "error",
"curly": "error",
"max-len": ["error", {"code": 132, "comments": 162}],
"max-lines": ["error", 1000],
"quotes": ["error", "single"],
"no-useless-escape": "off",
"newline-per-chained-call": ["error", { "ignoreChainWithDepth": 2 }],
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-magic-numbers": ["error", { "ignore": [-1, 0, 1, 2] }],
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-unused-vars": "error"
}
}