-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
38 lines (38 loc) · 861 Bytes
/
.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
{
"extends": ["standard", "prettier", 'plugin:react/recommended'],
"plugins": ["import", "mocha", "react", "react-hooks"],
"globals": {
"fetch",
"__DEV__": true
},
"env": {
"mocha": true,
"browser": true
},
"settings": {
"react": {
"version": "16"
}
},
"rules": {
"react/prop-types": 0,
"react/jsx-uses-vars": "error",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.spec.{mjs,js}",
"**/*.config.js",
"scripts/*",
],
"optionalDependencies": true,
"peerDependencies": true
}
],
"mocha/no-exclusive-tests": "error",
"mocha/no-nested-tests": "error",
"mocha/no-identical-title": "error"
}
}