story-research-zapwall/.eslintrc.json

44 lines
898 B
JSON
Raw Permalink Normal View History

2025-12-22 09:48:57 +01:00
{
2026-01-06 09:26:07 +01:00
"env": {
"browser": true,
"es2021": true,
"node": true
},
2025-12-22 09:48:57 +01:00
"extends": [
2026-01-06 09:26:07 +01:00
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
2025-12-22 09:48:57 +01:00
],
"parser": "@typescript-eslint/parser",
2026-01-06 09:26:07 +01:00
"plugins": [
"@typescript-eslint",
"react",
"react-hooks"
],
2025-12-22 09:48:57 +01:00
"parserOptions": {
2026-01-06 09:26:07 +01:00
"ecmaVersion": "latest",
2025-12-22 09:48:57 +01:00
"sourceType": "module",
2026-01-06 09:26:07 +01:00
"ecmaFeatures": {
"jsx": true
},
2025-12-22 09:48:57 +01:00
"project": "./tsconfig.json"
},
2026-01-06 09:26:07 +01:00
"settings": {
"react": {
"version": "detect"
}
},
2025-12-22 09:48:57 +01:00
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
2026-01-06 09:26:07 +01:00
"varsIgnorePattern": "^_"
2025-12-22 09:48:57 +01:00
}
],
2026-01-06 09:26:07 +01:00
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-require-imports": "off",
"no-misleading-character-class": "off"
2025-12-22 09:48:57 +01:00
}
2026-01-06 09:26:07 +01:00
}