27 lines
564 B
JSON
27 lines
564 B
JSON
![]() |
{
|
||
|
"eslintConfig": {
|
||
|
"extends": [
|
||
|
"react-app",
|
||
|
"shared-config"
|
||
|
],
|
||
|
"rules": {
|
||
|
"additional-rule": "warn",
|
||
|
"no-extend-native": "off",
|
||
|
"react-hooks/exhaustive-deps": "off",
|
||
|
"array-callback-return": "off"
|
||
|
},
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": [
|
||
|
"**/*.ts?(x)"
|
||
|
],
|
||
|
"rules": {
|
||
|
"additional-typescript-only-rule": "warn",
|
||
|
"array-callback-return": "off",
|
||
|
"react-hooks/exhaustive-deps": "off",
|
||
|
"no-extend-native": "off"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|