mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-19 12:14:47 +00:00
21 lines
562 B
JavaScript
21 lines
562 B
JavaScript
import { defineConfig } from "eslint/config";
|
|
import eslint from "@eslint/js";
|
|
import nextConfig from "eslint-config-next/core-web-vitals";
|
|
import tseslint from "typescript-eslint";
|
|
|
|
export default defineConfig(
|
|
{ ignores: ["docs/**", "generated/**"] },
|
|
eslint.configs.recommended,
|
|
tseslint.configs.recommended,
|
|
...nextConfig,
|
|
{
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"error",
|
|
{ args: "none", caughtErrors: "none", varsIgnorePattern: "^_" },
|
|
],
|
|
},
|
|
},
|
|
);
|