44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import babelParser from "@babel/eslint-parser";
|
|
import js from "@eslint/js";
|
|
import reactHooks from "eslint-plugin-react-hooks";
|
|
import reactRefresh from "eslint-plugin-react-refresh";
|
|
import globals from "globals";
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
".next/**",
|
|
"dist/**",
|
|
"dist-server/**",
|
|
"node_modules/**",
|
|
"playwright-report/**",
|
|
"test-results/**"
|
|
]
|
|
},
|
|
js.configs.recommended,
|
|
{
|
|
files: ["**/*.{ts,tsx}"],
|
|
languageOptions: {
|
|
ecmaVersion: "latest",
|
|
globals: globals.browser,
|
|
parser: babelParser,
|
|
parserOptions: {
|
|
requireConfigFile: false,
|
|
babelOptions: {
|
|
presets: ["@babel/preset-typescript", ["@babel/preset-react", { runtime: "automatic" }]]
|
|
}
|
|
}
|
|
},
|
|
plugins: {
|
|
"react-hooks": reactHooks,
|
|
"react-refresh": reactRefresh
|
|
},
|
|
rules: {
|
|
...reactHooks.configs.recommended.rules,
|
|
"no-undef": "off",
|
|
"no-unused-vars": "off",
|
|
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }]
|
|
}
|
|
}
|
|
];
|