21 lines
409 B
JavaScript
21 lines
409 B
JavaScript
import coreWebVitals from "eslint-config-next/core-web-vitals";
|
|
import typescript from "eslint-config-next/typescript";
|
|
|
|
const eslintConfig = [
|
|
{
|
|
ignores: [
|
|
".next/**",
|
|
".open-next/**",
|
|
".wrangler/**",
|
|
"coverage/**",
|
|
"node_modules/**",
|
|
"playwright-report/**",
|
|
"test-results/**",
|
|
],
|
|
},
|
|
...coreWebVitals,
|
|
...typescript,
|
|
];
|
|
|
|
export default eslintConfig;
|