Files
copilotkit__copilotkit/examples/showcases/cloudplot/eslint.config.mjs
2026-08-27 00:40:16 -07: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;