corvée(stylelint) Corrige la configuration

This commit is contained in:
gcch 2024-08-14 09:39:06 +02:00
commit 1bd8ced70a
3 changed files with 5 additions and 4 deletions

8
lib/stylelint.d.ts vendored Normal file
View file

@ -0,0 +1,8 @@
/**
* Définition d'un groupe de Propriétés _CSS_ du plugin `stylelint-config-clean-order` pour _Stylelint_.
*/
export type StylelintConfigCleanOrderPropertyGroup = {
emptyLineBefore: "never" | "threshold";
noEmptyLineBetween: boolean;
properties: string | Array<string>;
};