From c3dcb9c827df6d80ad1b0b1a7c6155561527b39d Mon Sep 17 00:00:00 2001 From: l3wdfut4pwr Date: Tue, 30 Dec 2025 13:46:39 +0200 Subject: init --- eslint.config.mjs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 eslint.config.mjs (limited to 'eslint.config.mjs') diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000..a6b1513 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,23 @@ +import { defineConfig, globalIgnores } from "eslint/config"; +import nextVitals from "eslint-config-next/core-web-vitals"; +import nextTs from "eslint-config-next/typescript"; + +const eslintConfig = defineConfig([ + ...nextVitals, + ...nextTs, + { + rules: { + '@typescript-eslint/no-explicit-any': 'off' + } + }, + // Override default ignores of eslint-config-next. + globalIgnores([ + // Default ignores of eslint-config-next: + ".next/**", + "out/**", + "build/**", + "next-env.d.ts", + ]), +]); + +export default eslintConfig; -- cgit v1.3-3-g829e