-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
33 lines (33 loc) · 888 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
{
"extends": [
"airbnb-typescript",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./packages/**/tsconfig.json"
},
"env": {
"jest": true
},
"globals": {
"window": true,
"document": true
},
"rules": {
"react/jsx-filename-extension": [2, { "extensions": [".tsx"] }],
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"react/prop-types": 0,
"react/jsx-props-no-spreading": 0,
"react/no-unescaped-entities": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/restrict-template-expressions": 0,
"react/require-default-props": 0
},
"settings": {}
}