28 lines
542 B
JSON
28 lines
542 B
JSON
{
|
|
"extends": [
|
|
"@apify/eslint-config-ts",
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.eslint.json",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": 2020
|
|
},
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
},
|
|
"rules": {
|
|
"quote-props": ["error", "consistent"],
|
|
"no-void": 0
|
|
},
|
|
"root": true
|
|
}
|