aboutsummaryrefslogtreecommitdiff
path: root/communities/174bg/174bg.net/eslint.config.mjs
blob: f443835250120454b0aeb11c2f3e1f445047b3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { defineConfig, globalIgnores } from "eslint/config";
import nextVitals from "eslint-config-next/core-web-vitals";

const eslintConfig = defineConfig([
  ...nextVitals,
  // Override default ignores of eslint-config-next.
  globalIgnores([
    // Default ignores of eslint-config-next:
    ".next/**",
    "out/**",
    "build/**",
    "next-env.d.ts",
  ]),
]);

export default eslintConfig;