-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
34 lines (34 loc) · 872 Bytes
/
.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
{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"jest",
"jest-formatting"
],
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:jest-formatting/strict",
"plugin:jest/recommended",
"plugin:jest/style",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"node": true,
"jest/globals": true
},
"rules": {
"import/extensions": "off",
"import/prefer-default-export": "off",
"class-methods-use-this": "off",
"no-param-reassign": "off",
"no-shadow": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-shadow": 1
}
}