This commit is contained in:
gcch 2025-11-12 16:23:06 +01:00
commit e05e9553f5
1250 changed files with 23379 additions and 147730 deletions

11
eslint.config.ts Executable file
View file

@ -0,0 +1,11 @@
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",
},
});