This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
80 lines (80 loc) · 2.1 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest"
},
"plugins": ["@typescript-eslint", "unused-imports"],
"rules": {
"@typescript-eslint/ban-ts-comment": [
"error",
{
"minimumDescriptionLength": 3,
"ts-check": true,
"ts-expect-error": "allow-with-description",
"ts-ignore": "allow-with-description",
"ts-nocheck": true
}
],
"@typescript-eslint/default-param-last": ["error"],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/member-ordering": [
"error",
{
"default": [
"signature",
"public-instance-field",
"protected-instance-field",
"private-instance-field",
"instance-field",
"public-static-field",
"protected-static-field",
"private-static-field",
"static-field",
"public-constructor",
"protected-constructor",
"private-constructor",
"constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method",
"instance-method",
"public-static-method",
"protected-static-method",
"private-static-method",
"static-method"
]
}
],
"@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{ "vars": "all", "varsIgnorePattern": "^_", "args": "after-used", "argsIgnorePattern": "^_" }
],
"no-constant-binary-expression": ["error"],
"no-constructor-return": ["error"],
"no-duplicate-imports": ["error"],
"sort-imports": "error",
"require-atomic-updates": ["error"],
"indent": ["error", "tab"],
"linebreak-style": ["error", "windows"],
"quotes": ["error", "double"],
"semi": ["error", "always"],
"comma-spacing": ["error", { "before": false, "after": true }],
"key-spacing": [
"error",
{
"beforeColon": false,
"afterColon": true
}
],
"object-curly-spacing": ["error", "always"]
}
}