-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.eslintrc.json
100 lines (100 loc) · 3.08 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"root": true,
"env": {
"browser": true,
"es2020": true,
"jest": true
},
"extends": ["plugin:react/recommended", "airbnb"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"plugins": ["react", "react-hooks"],
"rules": {
"linebreak-style": ["error", "unix"],
"import/no-named-as-default": 1,
"quotes": ["error", "single"],
"semi": ["error", "always"],
"class-methods-use-this": ["off"],
"complexity": ["off", 11],
"no-magic-numbers": [
"error",
{
"ignore": [1],
"ignoreArrayIndexes": true,
"enforceConst": true,
"detectObjects": false
}
],
"react/button-has-type": [
"error",
{
"button": true,
"submit": true,
"reset": true
}
],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/default-props-match-prop-types": ["error", { "allowRequiredDefaults": false }],
"react/destructuring-assignment": ["error", "always"],
"react/forbid-component-props": ["error"],
"react/forbid-prop-types": ["error"],
"react/no-did-mount-set-state": ["error"],
"react/no-did-update-set-state": ["error"],
"react/no-multi-comp": ["error", { "ignoreStateless": false }],
"react/no-access-state-in-setstate": ["error"],
"react/no-redundant-should-component-update": ["error"],
"react/no-this-in-sfc": ["error"],
"react/no-typos": ["error"],
"react/no-unsafe": ["error"],
"react/no-unused-state": ["error"],
"react/no-will-update-set-state": ["error"],
"react/prefer-es6-class": ["error", "always"],
"react/self-closing-comp": ["error"],
"react/state-in-constructor": ["error", "always"],
"react/void-dom-elements-no-children": ["error"],
"react/jsx-closing-bracket-location": ["error"],
"react/jsx-closing-tag-location": ["error"],
"react/jsx-curly-newline": ["error"],
"react/jsx-fragments": ["error"],
"react/jsx-max-depth": ["error", { "max": 8 }],
"react/jsx-no-useless-fragment": ["error"],
"react/jsx-curly-spacing": ["error", { "when": "always" }],
"react/jsx-equals-spacing": ["error", "never"],
"react/jsx-first-prop-new-line": ["error", "multiline"],
"react/jsx-indent": [
"error",
2,
{ "checkAttributes": true, "indentLogicalExpressions": true }
],
"react/jsx-indent-props": ["error", 2],
"react/jsx-key": ["error"],
"react/jsx-max-props-per-line": ["error", { "maximum": 1, "when": "multiline" }],
"react/jsx-tag-spacing": [
"error",
{
"closingSlash": "never",
"beforeSelfClosing": "always",
"afterOpening": "never",
"beforeClosing": "never"
}
],
"react/jsx-wrap-multilines": [
"error",
{
"declaration": "parens",
"assignment": "parens",
"return": "parens",
"arrow": "parens",
"condition": "ignore",
"logical": "ignore",
"prop": "ignore"
}
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error"
}
}