Files
cavepediav2/web/eslint.config.mjs
2025-12-07 16:40:56 +01:00

20 lines
376 B
JavaScript

import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
import nextTypescript from "eslint-config-next/typescript";
const eslintConfig = [
...nextCoreWebVitals,
...nextTypescript,
{
ignores: [
"node_modules/**",
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
"agent",
],
},
];
export default eslintConfig;