-
Notifications
You must be signed in to change notification settings - Fork 58
/
.eslintrc.json
70 lines (70 loc) · 2.26 KB
/
.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
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
68
69
70
{
"env": {
"browser": true,
"es2020": true,
"jest": true
},
"extends": ["airbnb", "airbnb-typescript", "airbnb/hooks", "plugin:@typescript-eslint/recommended", "plugin:jest/recommended", "prettier", "plugin:import/errors", "plugin:import/warnings", "plugin:import/typescript"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["only-warn", "react", "react-hooks", "@typescript-eslint", "jest", "import"],
"rules": {
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"],
"react/jsx-filename-extension": [
"warn",
{
"extensions": [".tsx"]
}
],
"import/extensions": [
"error",
"ignorePackages",
{
"ts": "never",
"tsx": "never"
}
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react/prop-types": "off",
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"max-len": ["warn", {"code": 180}],
"@typescript-eslint/explicit-module-boundary-types": "off",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
//"import/no-relative-parent-imports": "error",
"import/newline-after-import": ["error", { "count": 1 }],
"import/prefer-default-export": "off",
"import/no-cycle": "off",
"@typescript-eslint/no-non-null-assertion": "off",
// Allow props spreading (e.g. {...props})
"react/jsx-props-no-spreading": "off",
"react/destructuring-assignment": "off",
"react/button-has-type": "off",
"react/function-component-definition": ["warn", { "namedComponents": "arrow-function", "unnamedComponents": "arrow-function" }],
"react/jsx-no-bind": "off",
"react/require-default-props": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"jsx-a11y/anchor-is-valid": "off"
},
"settings": {
"import/resolver": {
"typescript": {}
},
"react": {
"version": "detect"
}
}
}