mirror of
https://github.com/lucasrcsantana/story-generator.git
synced 2025-12-16 21:37:51 +00:00
23 lines
525 B
JSON
23 lines
525 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"es2020": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"ignorePatterns": ["dist", ".eslintrc.json"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["react-refresh"],
|
|
"rules": {
|
|
"react-refresh/only-export-components": [
|
|
"warn",
|
|
{ "allowConstantExport": true }
|
|
],
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"no-unused-vars": "warn"
|
|
}
|
|
} |