Files
Firefly_Srtools/eslint.config.mjs
AzenKain afdb92cc2d
Some checks failed
Gitea Auto Deploy / Deploy-Container (push) Failing after 1m25s
UPDATE: next16 and minifyjson
2025-11-18 14:09:00 +07:00

14 lines
470 B
JavaScript

import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
import nextTypescript from "eslint-config-next/typescript";
import { dirname } from "path";
import { fileURLToPath } from "url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const eslintConfig = [...nextCoreWebVitals, ...nextTypescript, {
ignores: ["node_modules/**", ".next/**", "out/**", "build/**", "next-env.d.ts"]
}];
export default eslintConfig;