15 lines
626 B
JSON
15 lines
626 B
JSON
{
|
|
"env": { "browser": true, "es2021": true },
|
|
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:react-hooks/recommended", "plugin:@typescript-eslint/recommended"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": { "ecmaVersion": 2021, "sourceType": "module" },
|
|
"plugins": ["react", "@typescript-eslint"],
|
|
"settings": { "react": { "version": "detect" } },
|
|
"rules": {
|
|
"react-hooks/exhaustive-deps": "off",
|
|
"react/react-in-jsx-scope": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
|
|
}
|
|
}
|