{
  "plugins": [
    "stylelint-order",
    "stylelint-scss"
  ],
  "extends": [
    "stylelint-config-recommended",
    "stylelint-config-standard",
    "stylelint-config-sass-guidelines"
  ],
  "rules": {
    "at-rule-empty-line-before": [ "always", {
      "except": [
        "blockless-after-same-name-blockless",
        "first-nested"
      ],
      "ignore": ["after-comment"],
      "ignoreAtRules": [ "else" ]
    } ],
    "at-rule-no-unknown": null,
    "block-closing-brace-newline-after": [
      "always", {
        "ignoreAtRules": [ "if", "else" ]
      }
    ],
    "color-hex-length": "long",
    "declaration-no-important": true,
    "max-nesting-depth": [
      3,
      {
        "ignoreAtRules": [
          "media",
          "supports",
          "include"
        ]
      }
    ],
    "order/properties-alphabetical-order": null,
    "order/properties-order": [
      [
        "content",
        "quotes",
        "display",
        "visibility",
        "position",
        "z-index",
        "top",
        "right",
        "bottom",
        "left",
        "box-sizing",
        "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",
        "align-content",
        "align-items",
        "align-self",
        "justify-content",
        "order",
        "width",
        "min-width",
        "max-width",
        "height",
        "min-height",
        "max-height",
        "margin",
        "margin-top",
        "margin-right",
        "margin-bottom",
        "margin-left",
        "padding",
        "padding-top",
        "padding-right",
        "padding-bottom",
        "padding-left",
        "float",
        "clear",
        "overflow",
        "overflow-x",
        "overflow-y",
        "clip",
        "zoom",
        "columns",
        "column-gap",
        "column-fill",
        "column-rule",
        "column-span",
        "column-count",
        "column-width",
        "table-layout",
        "empty-cells",
        "caption-side",
        "border-spacing",
        "border-collapse",
        "list-style",
        "list-style-position",
        "list-style-type",
        "list-style-image",
        "transform",
        "transform-box",
        "transform-origin",
        "transform-style",
        "backface-visibility",
        "perspective",
        "perspective-origin",
        "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",
        "border",
        "border-top",
        "border-right",
        "border-bottom",
        "border-left",
        "border-width",
        "border-top-width",
        "border-right-width",
        "border-bottom-width",
        "border-left-width",
        "border-style",
        "border-top-style",
        "border-right-style",
        "border-bottom-style",
        "border-left-style",
        "border-radius",
        "border-top-left-radius",
        "border-top-right-radius",
        "border-bottom-right-radius",
        "border-bottom-left-radius",
        "border-color",
        "border-top-color",
        "border-right-color",
        "border-bottom-color",
        "border-left-color",
        "outline",
        "outline-color",
        "outline-offset",
        "outline-style",
        "outline-width",
        "stroke-width",
        "stroke-linecap",
        "stroke-dasharray",
        "stroke-dashoffset",
        "stroke",
        "opacity",
        "background",
        "background-attachment",
        "background-clip",
        "background-color",
        "background-image",
        "background-repeat",
        "background-position",
        "background-size",
        "box-shadow",
        "fill",
        "color",
        "font",
        "font-family",
        "font-size",
        "font-size-adjust",
        "font-smoothing",
        "font-stretch",
        "font-style",
        "font-variant",
        "font-weight",
        "font-emphasize",
        "font-emphasize-position",
        "font-emphasize-style",
        "letter-spacing",
        "line-height",
        "list-style",
        "text-align",
        "text-align-last",
        "text-decoration",
        "text-decoration-color",
        "text-decoration-line",
        "text-decoration-style",
        "text-indent",
        "text-justify",
        "text-overflow",
        "text-overflow-ellipsis",
        "text-overflow-mode",
        "text-rendering",
        "text-outline",
        "text-shadow",
        "text-transform",
        "text-wrap",
        "word-wrap",
        "word-break",
        "text-emphasis",
        "text-emphasis-color",
        "text-emphasis-style",
        "text-emphasis-position",
        "vertical-align",
        "white-space",
        "word-spacing",
        "hyphens",
        "src",
        "tab-size",
        "counter-reset",
        "counter-increment",
        "resize",
        "cursor",
        "pointer-events",
        "speak",
        "user-select",
        "nav-index",
        "nav-up",
        "nav-right",
        "nav-down",
        "nav-left"
      ],
      {
        "unspecified": "bottom"
      }
    ],
    "scss/at-else-closing-brace-newline-after": "always-last-in-chain",
    "scss/at-else-closing-brace-space-after": "always-intermediate",
    "scss/at-else-empty-line-before": "never",
    "scss/at-if-closing-brace-newline-after": "always-last-in-chain",
    "scss/at-if-closing-brace-space-after": "always-intermediate",
    "selector-type-no-unknown": [ true, {
      "ignore": ["custom-elements"]
    } ]
  }
}
