35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
import { defineConfig } from "eslint/config";
|
|
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTypescript from "eslint-config-next/typescript";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import js from "@eslint/js";
|
|
import { FlatCompat } from "@eslint/eslintrc";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
recommendedConfig: js.configs.recommended,
|
|
allConfig: js.configs.all
|
|
});
|
|
|
|
export default defineConfig([{
|
|
extends: [
|
|
...nextCoreWebVitals,
|
|
...nextTypescript,
|
|
...compat.extends("plugin:@typescript-eslint/recommended")
|
|
],
|
|
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
|
|
"@typescript-eslint/no-unused-vars": ["warn", {
|
|
argsIgnorePattern: "^_",
|
|
varsIgnorePattern: "^_",
|
|
caughtErrorsIgnorePattern: "^_",
|
|
}],
|
|
|
|
"@typescript-eslint/no-empty-object-type": "off",
|
|
},
|
|
}]); |