-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.eslintrc.json
81 lines (81 loc) · 2.42 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
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
81
{
"env": {
"commonjs": true,
"es6": true,
"node": true,
"jest": true
},
"extends": ["prettier"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"rules": {
"eqeqeq": ["warn", "smart"],
"eol-last": ["error"],
"@typescript-eslint/await-thenable": ["error"],
"@typescript-eslint/no-extra-non-null-assertion": ["error"],
"@typescript-eslint/no-unnecessary-type-assertion": ["error"],
"@typescript-eslint/prefer-nullish-coalescing": ["error"],
"@typescript-eslint/require-await": ["error"],
"curly": "warn",
"no-var": 2,
"prefer-const": "error",
// note you must disable the base rule as it can report incorrect errors
"semi": "off",
"@typescript-eslint/semi": ["error"],
"space-before-blocks": "error",
"spaced-comment": "warn",
"quotes": "off",
"@typescript-eslint/quotes": ["error", "single", { "avoidEscape": true }],
// note you must disable the base rule as it can report incorrect errors
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error", { "caughtErrors": "none" }],
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": ["classProperty", "classMethod"],
"format": ["camelCase", "UPPER_CASE"],
"leadingUnderscore": "require",
"modifiers": ["private"]
},
{
"selector": ["classProperty"],
"format": ["UPPER_CASE"],
"modifiers": ["public", "static"],
"leadingUnderscore": "forbid"
},
{
"selector": ["classMethod"],
"format": ["camelCase"],
"modifiers": ["public", "static"],
"leadingUnderscore": "forbid"
},
{
"selector": ["classProperty", "classMethod"],
"format": ["UPPER_CASE", "camelCase"],
"modifiers": ["protected"],
"leadingUnderscore": "forbid"
},
{
"selector": ["classProperty", "classMethod"],
"format": ["UPPER_CASE", "camelCase"],
"modifiers": ["public"],
"leadingUnderscore": "forbid"
},
{
"selector": ["interface"],
"format": ["PascalCase", "UPPER_CASE"],
"prefix": ["I"]
}
]
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"project": "./tsconfig.json"
}
}