You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
react-router/.eslintrc

25 lines
492 B
Plaintext

{
"extends": ["react-app"],
"rules": {
"import/first": "off",
"@typescript-eslint/consistent-type-imports": "error"
},
"overrides": [
{
"files": ["**/__tests__/**"],
"plugins": ["jest"],
"extends": ["plugin:jest/recommended"]
},
{
"files": ["integration/**/*.*"],
"rules": {
"react-hooks/rules-of-hooks": "off"
},
"env": {
"jest/globals": false
}
}
],
"reportUnusedDisableDirectives": true
}