-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
32 lines (32 loc) · 846 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
{
"root": true,
"env": {
"browser": true,
"node": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".mdx"]
}
}
},
"extends": ["react-app", "react-app/jest", "prettier", "plugin:react-hooks/recommended"],
"plugins": ["prettier", "react", "react-hooks"],
"rules": {
"comma-dangle": "off",
"import/no-unresolved": "off",
"no-console": "off",
"no-plusplus": "off",
"react/no-danger": "off",
"arrow-body-style": "off",
"react-hooks/exhaustive-deps": "off",
"react/forbid-prop-types": "off",
"react/jsx-filename-extension": "off",
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off",
"react/jsx-no-bind": "off",
"no-nested-ternary": "off",
"react/destructuring-assignment": "off"
}
}