CoolFace
Apppublic

Mistral-AI-Game-Jam/DefendDaniel2

sourceHugging Faceupdated 2y agoView on Hugging Face
7likes
eslint.config.mjs17 linesDownload Raw Back to root
1import { dirname } from "path";2import { fileURLToPath } from "url";3import { FlatCompat } from "@eslint/eslintrc";4 5const __filename = fileURLToPath(import.meta.url);6const __dirname = dirname(__filename);7 8const compat = new FlatCompat({9  baseDirectory: __dirname,10});11 12const eslintConfig = [13  ...compat.extends("next/core-web-vitals", "next/typescript"),14];15 16export default eslintConfig;17