-
Notifications
You must be signed in to change notification settings - Fork 22
/
.eslintrc
executable file
·72 lines (72 loc) · 1.86 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
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.json"
},
"extends": ["eslint:recommended", "plugin:jest/recommended", "plugin:@typescript-eslint/recommended"],
"env": {
"browser": true,
"es2022": true,
"node": true,
"jest": true
},
"rules": {
"no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
],
"semi": "warn",
"prefer-const": "warn",
"no-var": "warn",
"indent": ["warn", 2, { "SwitchCase": 1 }],
"curly": ["error", "all"],
"no-multi-spaces": "error",
"no-multi-assign": "error",
"no-mixed-spaces-and-tabs": "error",
"@typescript-eslint/ban-types": "warn",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-var-requires": "off"
},
"globals": {
"process": false,
"Android": true
},
"plugins": ["jest", "@typescript-eslint"],
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/explicit-member-accessibility": [
"warn",
{
"accessibility": "explicit",
"overrides": {
"accessors": "off",
"constructors": "no-public",
"methods": "explicit",
"properties": "no-public",
"parameterProperties": "explicit"
}
}
],
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/no-empty-function": [
"warn",
{
"allow": ["private-constructors", "protected-constructors"]
}
]
}
}
]
}