2024-08-13

This commit is contained in:
gcch 2024-08-13 14:19:43 +02:00
commit d26f851139
332 changed files with 1371 additions and 309 deletions

9
stylelint.d.ts vendored Normal file
View file

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