{
  "extends": ["stylelint-config-recommended", "stylelint-config-html"],
  "plugins": ["stylelint-order"],
  "defaultSeverity": "warning",
  "ignoreFiles": [
    "dev/assets/css/*.css",
    "dist/assets/css/*.css",
    "package/src/assets/css/*.css",
    "dev/*.html",
    "dist/*.html",
    "package/*.html",
    "dev/**/*.html",
    "dist/**/*.html",
    "package/**/*.html"
  ],

  "rules": {
    "selector-class-pattern": null,
    "property-no-vendor-prefix": null,
    "at-rule-no-unknown": [
      true,
      {
        "ignoreAtRules": ["mixin", "define-mixin"]
      }
    ],
    "no-duplicate-selectors": null,
    "no-descending-specificity": null,
    "max-nesting-depth": 3,
    "function-url-quotes": null,
    "declaration-no-important": true,
    "at-rule-empty-line-before": null,
    "rule-empty-line-before": "always",
    "declaration-empty-line-before": null,
    "comment-empty-line-before": null,
    "function-calc-no-unspaced-operator": true,
    "selector-no-vendor-prefix": null,
    "value-keyword-case": "lower",
    "color-function-notation": "modern",
    "color-named": "never",
    "color-hex-length": "long",
    "alpha-value-notation": "number",
    "declaration-block-no-redundant-longhand-properties": null,
    "function-name-case": "lower",
    "declaration-block-no-duplicate-properties": null,
    "block-no-empty": true,
    "declaration-block-single-line-max-declarations": 0,
    "selector-no-qualifying-type": null,

    "order/order": [
      [
        "custom-properties",
        "dollar-variables",
        {
          "type": "at-rule",
          "name": "mixin"
        },
        "declarations",
        {
          "type": "at-rule",
          "name": "media"
        },
        {
          "type": "at-rule",
          "hasBlock": true
        },
        "at-rules",
        "rules"
      ]
    ],

    "order/properties-order": [
      [
        {
          "groupName": "Initial",
          "properties": ["composes", "all", "content"]
        },
        {
          "groupName": "Display",
          "properties": [
            "display",
            "grid",
            "grid-after",
            "grid-area",
            "grid-auto-columns",
            "grid-auto-flow",
            "grid-auto-rows",
            "grid-before",
            "grid-column",
            "grid-column-end",
            "grid-column-gap",
            "grid-column-start",
            "grid-columns",
            "grid-end",
            "grid-gap",
            "grid-row",
            "grid-row-end",
            "grid-row-gap",
            "grid-row-start",
            "grid-rows",
            "grid-start",
            "grid-template",
            "grid-template-areas",
            "grid-template-columns",
            "grid-template-rows",
            "flex",
            "flex-basis",
            "flex-direction",
            "flex-flow",
            "flex-grow",
            "flex-shrink",
            "flex-wrap",
            "gap",
            "row-gap",
            "column-gap",
            "place-content",
            "align-content",
            "justify-content",
            "place-items",
            "align-items",
            "justify-items",
            "place-self",
            "align-self",
            "justify-self",
            "order",
            "container",
            "container-name",
            "container-type",
            "vertical-align",
            "table-layout",
            "caption-side",
            "empty-cells",
            "border-spacing",
            "border-collapse",
            "columns",
            "column-gap",
            "column-fill",
            "column-span",
            "column-count",
            "column-width",
            "column-rule",
            "column-rule-width",
            "column-rule-style",
            "column-rule-color"
          ]
        },
        {
          "groupName": "Box model",
          "properties": [
            "box-sizing",
            "width",
            "min-width",
            "max-width",
            "height",
            "min-height",
            "max-height",
            "block-size",
            "min-block-size",
            "max-block-size",
            "inline-size",
            "min-inline-size",
            "max-inline-size",
            "margin",
            "margin-block",
            "margin-block-start",
            "margin-block-end",
            "margin-inline",
            "margin-inline-start",
            "margin-inline-end",
            "margin-top",
            "margin-right",
            "margin-bottom",
            "margin-left",
            "padding",
            "padding-block",
            "padding-block-start",
            "padding-block-end",
            "padding-inline",
            "padding-inline-start",
            "padding-inline-end",
            "padding-top",
            "padding-right",
            "padding-bottom",
            "padding-left",
            "overflow",
            "overflow-x",
            "overflow-y",
            "overflow-clip-margin",
            "overflow-scrolling",
            "-webkit-overflow-scrolling",
            "scroll-behavior",
            "scrollbar-color",
            "scrollbar-width",
            "scrollbar-gutter",
            "scroll-margin",
            "scroll-margin-block",
            "scroll-margin-block-start",
            "scroll-margin-block-end",
            "scroll-margin-inline",
            "scroll-margin-inline-start",
            "scroll-margin-inline-end",
            "scroll-margin-top",
            "scroll-margin-right",
            "scroll-margin-bottom",
            "scroll-margin-left",
            "scroll-padding",
            "scroll-padding-block",
            "scroll-padding-block-start",
            "scroll-padding-block-end",
            "scroll-padding-inline",
            "scroll-padding-inline-start",
            "scroll-padding-inline-end",
            "scroll-padding-top",
            "scroll-padding-right",
            "scroll-padding-bottom",
            "scroll-padding-left",
            "scroll-snap-type",
            "scroll-snap-align",
            "scroll-snap-stop",
            "overscroll-behavior",
            "overscroll-behavior-x",
            "overscroll-behavior-y",
            "overscroll-behavior-inline",
            "overscroll-behavior-block",
            "contain",
            "contain-intrinsic-size",
            "contain-intrinsic-width",
            "contain-intrinsic-height",
            "contain-intrinsic-inline-size",
            "contain-intrinsic-block-size",
            "shape-outside",
            "shape-image-threshold",
            "shape-margin",
            "aspect-ratio",
            "object-fit",
            "object-position",
            "clip-path",
            "visibility",
            "resize",
            "box-decoration-break",
            "-webkit-box-decoration-break",
            "counter-reset",
            "counter-set",
            "counter-increment",
            "clear",
            "float"
          ]
        },
        {
          "groupName": "Background",
          "properties": [
            "background",
            "background-attachment",
            "background-clip",
            "background-color",
            "background-image",
            "background-repeat",
            "background-position",
            "background-position-x",
            "background-position-y",
            "background-size",
            "background-origin",
            "background-attachment",
            "background-blend-mode"
          ]
        },
        {
          "groupName": "Border",
          "properties": [
            "border",
            "border-color",
            "border-style",
            "border-width",
            "border-block",
            "border-block-start",
            "border-block-start-color",
            "border-block-start-style",
            "border-block-start-width",
            "border-block-end",
            "border-block-end-color",
            "border-block-end-style",
            "border-block-end-width",
            "border-inline",
            "border-inline-start",
            "border-inline-start-color",
            "border-inline-start-style",
            "border-inline-start-width",
            "border-inline-end",
            "border-inline-end-color",
            "border-inline-end-style",
            "border-inline-end-width",
            "border-top",
            "border-top-color",
            "border-top-style",
            "border-top-width",
            "border-right",
            "border-right-color",
            "border-right-style",
            "border-right-width",
            "border-bottom",
            "border-bottom-color",
            "border-bottom-style",
            "border-bottom-width",
            "border-left",
            "border-left-color",
            "border-left-style",
            "border-left-width",
            "border-radius",
            "border-start-start-radius",
            "border-start-end-radius",
            "border-end-start-radius",
            "border-end-end-radius",
            "border-top-left-radius",
            "border-top-right-radius",
            "border-bottom-right-radius",
            "border-bottom-left-radius",
            "border-image",
            "border-image-source",
            "border-image-slice",
            "border-image-width",
            "border-image-outset",
            "border-image-repeat",
            "outline",
            "outline-color",
            "outline-offset",
            "outline-style",
            "outline-width"
          ]
        },
        {
          "groupName": "Position",
          "properties": [
            "position",
            "inset",
            "inset-block",
            "inset-block-start",
            "inset-block-end",
            "inset-inline",
            "inset-inline-start",
            "inset-inline-end",
            "top",
            "right",
            "bottom",
            "left",
            "z-index",
            "isolation"
          ]
        },
        {
          "groupName": "Typography",
          "properties": [
            "color",
            "font",
            "font-family",
            "font-size",
            "font-variation-settings",
            "font-style",
            "font-weight",
            "font-feature-settings",
            "font-optical-sizing",
            "font-kerning",
            "font-variant",
            "font-variant-ligatures",
            "font-variant-caps",
            "font-variant-alternates",
            "font-variant-numeric",
            "font-variant-east-asian",
            "font-variant-position",
            "font-size-adjust",
            "font-stretch",
            "font-effect",
            "font-emphasize",
            "font-emphasize-position",
            "font-emphasize-style",
            "font-smooth",
            "-webkit-font-smoothing",
            "-moz-osx-font-smoothing",
            "src",
            "font-display",
            "text-align",
            "text-align-last",
            "text-emphasis",
            "text-emphasis-color",
            "text-emphasis-style",
            "text-emphasis-position",
            "text-decoration",
            "text-decoration-line",
            "text-decoration-thickness",
            "text-decoration-style",
            "text-decoration-color",
            "text-underline-position",
            "text-underline-offset",
            "text-indent",
            "text-justify",
            "text-rendering",
            "text-outline",
            "text-overflow",
            "text-overflow-ellipsis",
            "text-overflow-mode",
            "text-shadow",
            "text-transform",
            "text-wrap",
            "text-size-adjust",
            "-webkit-text-size-adjust",
            "text-size-adjust",
            "text-combine-upright",
            "text-orientation",
            "text-rendering",
            "-webkit-text-fill-color",
            "-webkit-text-stroke-color",
            "line-clamp",
            "-webkit-line-clamp",
            "line-height",
            "letter-spacing",
            "white-space",
            "word-break",
            "word-spacing",
            "word-wrap",
            "overflow-wrap",
            "writing-mode",
            "quotes",
            "tab-size",
            "hyphens",
            "list-style",
            "list-style-position",
            "list-style-type",
            "list-style-image",
            "unicode-bidi",
            "unicode-range",
            "size-adjust",
            "ascent-override",
            "descent-override",
            "line-gap-override",
            "direction",
            "user-select",
            "ruby-position",
            "paint-order",
            "hanging-punctuation"
          ]
        },
        {
          "groupName": "Transform",
          "properties": [
            "translate",
            "scale",
            "rotate",
            "transform",
            "transform-box",
            "transform-origin",
            "transform-style",
            "backface-visibility",
            "perspective",
            "perspective-origin",
            "opacity",
            "filter",
            "mix-blend-mode",
            "box-shadow",
            "image-orientation"
          ]
        },
        {
          "groupName": "Animation",
          "properties": [
            "transition",
            "transition-property",
            "transition-duration",
            "transition-timing-function",
            "transition-delay",
            "animation",
            "animation-name",
            "animation-duration",
            "animation-play-state",
            "animation-timing-function",
            "animation-delay",
            "animation-iteration-count",
            "animation-direction",
            "animation-fill-mode",
            "offset",
            "offset-anchor",
            "offset-distance",
            "offset-path",
            "offset-distance",
            "offset-rotate"
          ]
        },
        {
          "groupName": "SVG",
          "properties": [
            "alignment-baseline",
            "baseline-shift",
            "dominant-baseline",
            "text-anchor",
            "word-spacing",
            "writing-mode",
            "cx",
            "cy",
            "d",
            "r",
            "rx",
            "ry",
            "fill",
            "fill-opacity",
            "fill-rule",
            "stroke",
            "stroke-dasharray",
            "stroke-dashoffset",
            "stroke-linecap",
            "stroke-linejoin",
            "stroke-miterlimit",
            "stroke-opacity",
            "stroke-width",
            "color-interpolation",
            "color-interpolation-filters",
            "color-profile",
            "color-rendering",
            "flood-color",
            "flood-opacity",
            "image-rendering",
            "lighting-color",
            "marker-start",
            "marker-mid",
            "marker-end",
            "mask",
            "mask-type",
            "shape-rendering",
            "vector-effect",
            "stop-color",
            "stop-opacity",
            "clip-rule"
          ]
        },
        {
          "groupName": "Interface",
          "properties": [
            "appearance",
            "accent-color",
            "forced-color-adjust",
            "color-scheme",
            "pointer-events",
            "touch-action",
            "cursor",
            "caret-color",
            "zoom",
            "nav-index",
            "nav-up",
            "nav-right",
            "nav-down",
            "nav-left",
            "content-visibility"
          ]
        },
        {
          "groupName": "Other",
          "properties": [
            "break-before",
            "break-inside",
            "break-after",
            "orphans",
            "widows",
            "will-change"
          ]
        }
      ],
      { "unspecified": "bottom" }
    ]
  }
}
