haiku-atelier-2024/eslint.config.ts
2025-12-13 16:21:57 +01:00

11 lines
393 B
TypeScript
Executable file

import { configTypescriptNavigateur } from "@gcch/configuration-eslint";
import { defineConfig } from "eslint/config";
export default defineConfig([...configTypescriptNavigateur], {
rules: {
"@typescript-eslint/no-empty-object-type": "off",
"perfectionist/sort-modules": "off",
"unicorn/no-array-method-this-argument": "off",
"unicorn/no-useless-undefined": "off",
},
});