2026-05-25 09:48:11 +02:00
|
|
|
// Copia per quando torni a Next 16 + ESLint 9: rinomina in eslint.config.mjs
|
2026-04-29 23:30:58 +02:00
|
|
|
import { defineConfig, globalIgnores } from "eslint/config";
|
|
|
|
|
import nextVitals from "eslint-config-next/core-web-vitals";
|
|
|
|
|
import nextTs from "eslint-config-next/typescript";
|
|
|
|
|
|
|
|
|
|
const eslintConfig = defineConfig([
|
|
|
|
|
...nextVitals,
|
|
|
|
|
...nextTs,
|
|
|
|
|
globalIgnores([
|
|
|
|
|
".next/**",
|
|
|
|
|
"out/**",
|
|
|
|
|
"build/**",
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
]),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
export default eslintConfig;
|