Files
eventspace/frontend/eslint.config.mjs
Felipe Cardoso d4074cf01e
All checks were successful
Build and Push Docker Images / changes (push) Successful in 5s
Build and Push Docker Images / build-backend (push) Has been skipped
Build and Push Docker Images / build-frontend (push) Successful in 1m10s
Fix build problems
2025-03-17 08:23:48 +01:00

17 lines
396 B
JavaScript

import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
});
const eslintConfig = [
// ...compat.extends("next/core-web-vitals", "next/typescript"),
];
export default eslintConfig;