-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
67 lines (67 loc) · 1.63 KB
/
.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:react/recommended",
"eslint:recommended",
"eslint-config-airbnb-base/rules/es6",
"plugin:jest/recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["@typescript-eslint", "react", "import", "jest", "prettier"],
"rules": {
"prettier/prettier": ["error"],
"import/no-unresolved": "error",
"import/no-default-export": "error",
"no-undef": 2,
"no-dupe-keys": 2,
"import/named": 2,
"import/no-cycle": 2,
"import/no-duplicates": 2,
"prefer-destructuring": 0,
"class-methods-use-this": 0,
"constructor-super": 0,
"prefer-spread": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-empty-function": 0,
"react/jsx-max-props-per-line": [1, { "maximum": 2, "when": "multiline" }],
"jest/expect-expect": [
"error",
{
"assertFunctionNames": ["expect", "waitFor"],
"additionalTestBlockFunctions": []
}
]
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": "./tsconfig.json"
}
},
"react": {
"version": "detect"
}
},
"env": {
"node": true,
"browser": true,
"jest/globals": true
},
"parserOptions": {
"project": "./tsconfig.json",
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"globals": {
"JSX":"readonly"
}
}