-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
39 lines (39 loc) · 1.39 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
{
"extends": ["wesbos/typescript"],
"plugins": ["prettier", "react-hooks-static-deps"],
"rules": {
"@typescript-eslint/no-empty-interface": 0,
"no-empty-pattern": 0,
"global-require": 0,
"import/no-extraneous-dependencies": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-argument": 0,
"@typescript-eslint/ban-types": 0,
"react/button-has-type": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/no-var-requires": 0,
"react/jsx-no-bind": 0,
"jsx-a11y/control-has-associated-label": 0,
"react/jsx-no-constructed-context-values": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-static-element-interactions": 0,
"@typescript-eslint/no-namespace": 0,
"import/no-unresolved": 0,
"@typescript-eslint/naming-convention": 0,
"no-restricted-globals": 0,
"react-hooks/exhaustive-deps": 0,
"react-hooks-static-deps/exhaustive-deps": [
"warn",
{
"staticHooks": {
"useForm": {
"setData": true
}
}
}
]
}
}