返回 VideoClaw
eslint.config.mjs
根目录 / video-claw / video-claw / frontend / eslint.config.mjs
1 import nextCoreVitals from "eslint-config-next/core-web-vitals.js";
2 import nextTypescript from "eslint-config-next/typescript.js";
3
4 const eslintConfig = [
5 nextCoreVitals,
6 nextTypescript,
7 {
8 ignores: [".next/**", "out/**", "build/**", "next-env.d.ts"],
9 },
10 ];
11
12 export default eslintConfig;
13
13 lines Plain Text