-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
37 lines (37 loc) · 1014 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
35
36
37
{
"extends": [
"airbnb",
"airbnb-typescript",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:eslint-comments/recommended",
"plugin:jest/recommended",
"plugin:jest/style",
"prettier"
],
"plugins": ["@typescript-eslint", "eslint-comments", "jest"],
"root": true,
"globals": {},
"parser": "@typescript-eslint/parser",
"overrides": [],
"settings": {},
"parserOptions": {
"tsconfigRootDir": ".",
"project": "./tsconfig(.*)?.json"
},
"env": {
"node": true,
"jest/globals": true
},
"rules": {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-var-requires": "off",
"global-require": "off",
"react/no-array-index-key": "off",
"react/jsx-props-no-spreading": "off",
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off"
}
}