-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-doctor.config.json
More file actions
29 lines (29 loc) · 1008 Bytes
/
Copy pathreact-doctor.config.json
File metadata and controls
29 lines (29 loc) · 1008 Bytes
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
{
"ignore": {
"overrides": [
{
"files": ["src/App.tsx"],
"rules": [
"react-doctor/no-unknown-property",
"react-doctor/no-array-index-key",
"react-doctor/no-array-index-as-key",
"react-doctor/no-event-handler",
"react-doctor/no-chain-state-updates",
"react-doctor/prefer-tag-over-role",
"react-doctor/prefer-useReducer",
"react-doctor/rerender-state-only-in-handlers",
"react-doctor/prefer-module-scope-static-value",
"react-doctor/no-derived-state",
"react-doctor/no-cascading-set-state",
"react-doctor/no-effect-chain",
"react-doctor/exhaustive-deps",
"react-doctor/click-events-have-key-events",
"react-doctor/no-noninteractive-element-interactions",
"react-doctor/no-giant-component",
"react-doctor/client-passive-event-listeners",
"react-doctor/no-initialize-state"
]
}
]
}
}