2025-03-03
Some checks failed
ci/woodpecker/push/publish_instable Pipeline failed

This commit is contained in:
gcch 2025-03-03 17:28:18 +01:00
commit 11fa3d1558
38 changed files with 819 additions and 148 deletions

View file

@ -44,12 +44,18 @@
"useTabs": false
},
"markup": {
"astro.scriptIndent": true,
"astro.styleIndent": true,
"astroAttrShorthand": true,
"closingBracketSameLine": false,
"closingTagLineBreakForEmpty": "never",
"component.selfClosing": false,
"component.whitespaceSensitivity": "strict",
"doctypeKeywordCase": "lower",
"formatComments": true,
"html.normal.selfClosing": false,
"html.scriptIndent": true,
"html.styleIndent": true,
"html.void.selfClosing": false,
"indentWidth": 2,
"lineBreak": "lf",
@ -60,8 +66,15 @@
"scriptFormatter": "dprint",
"scriptIndent": true,
"styleIndent": true,
"svg.selfClosing": true,
"svg.selfClosing": false,
"useTabs": false,
"vBindSameNameShortHand": true,
"vBindStyle": "short",
"vForDelimiterStyle": "of",
"vOnStyle": "short",
"vSlotStyle": "short",
"vue.scriptIndent": true,
"vue.styleIndent": true,
"whitespaceSensitivity": "strict"
},
"newLineKind": "lf",

View file

@ -1,17 +1,15 @@
// @ts-expect-error -- La dépendance ne dispose pas de types.
import { propertyGroups } from "stylelint-config-clean-order";
const propertiesOrder = Array.from(propertyGroups).map(properties => ({
emptyLineBefore: "never",
noEmptyLineBetween: true,
properties,
}));
/** @type {import("stylelint").Config} */
export default {
extends: ["stylelint-config-standard", "stylelint-config-clean-order"],
extends: ["stylelint-config-standard", "stylelint-config-clean-order", "stylelint-config-recommended-vue"],
plugins: ["stylelint-declaration-block-no-ignored-properties"],
rules: {
"custom-property-pattern": null,