20 lines
615 B
JavaScript
20 lines
615 B
JavaScript
module.exports = {
|
|
$schema: "https://json.schemastore.org/eslintrc",
|
|
root: true,
|
|
env: { browser: true, es2020: true },
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
],
|
|
ignorePatterns: ["dist", ".eslintrc.cjs"],
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["react-refresh"],
|
|
rules: {
|
|
"@typescript-eslint/no-require-imports": "none",
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
|
|
"react/no-unescaped-entities": "off",
|
|
},
|
|
};
|