This commit is contained in:
gcch 2025-10-01 14:14:20 +02:00
commit 18d605339f
12 changed files with 434 additions and 149 deletions

8
règles/tri.ts Normal file
View file

@ -0,0 +1,8 @@
import type { Linter } from "eslint";
import perfectionist from "eslint-plugin-perfectionist";
export const règlesTri: Readonly<Linter.Config> = {
plugins: perfectionist.configs["recommended-natural"].plugins ?? {},
rules: perfectionist.configs["recommended-natural"].rules ?? {},
};