-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
36 lines (36 loc) · 802 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
{
"extends": [
"plugin:@typescript-eslint/recommended",
"airbnb-base",
"plugin:import/typescript"
],
"globals": {
"NodeJS": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018
},
"plugins": [
"@typescript-eslint"
],
"env": {
"jest": true
},
"rules": {
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"no-plusplus": "off",
"no-restricted-syntax": ["error", "ForInStatement", "LabeledStatement", "WithStatement"],
"@typescript-eslint/no-explicit-any": "error",
"import/no-cycle": "error",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"ts": "never"
}
]
}
}