-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
46 lines (46 loc) · 985 Bytes
/
.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
{
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true,
"es6": true,
"jest": true,
"browser": true
},
"rules": {
"@typescript-eslint/indent": ["error", 2],
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/explicit-member-accessibility": 0,
"indent": ["error", 2, { "SwitchCase": 1 }],
"semi": ["error", "always"],
"no-unused-vars": [
1,
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": false
}
],
"import/prefer-default-export": 0,
"no-underscore-dangle": 0,
"no-console": 0,
"prefer-object-spread": 0,
"no-case-declarations": 0,
"no-plusplus": 0,
"comma-dangle": 0,
"no-extend-native": 0,
"quotes": 0
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts"]
}
}
}
}