aboutsummaryrefslogtreecommitdiff
path: root/web/eslint.config.mjs
blob: 348c45a2fd8216681988475081fd9db87a50031e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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")];

export default eslintConfig;