{ "extends": [ "stylelint-config-standard", "stylelint-config-recommended-scss" ], "plugins": [ "stylelint-order" ], "rules": { "at-rule-empty-line-before": [ "always", { "except": [ "blockless-after-same-name-blockless", "first-nested" ], "ignore": [ "after-comment" ], "ignoreAtRules": [ "else" ] } ], "at-rule-no-vendor-prefix": true, "at-rule-semicolon-space-before": "never", "block-closing-brace-newline-after": [ "always", { "ignoreAtRules": [ "else", "if" ] } ], "color-hex-length": "long", "color-named": "never", "declaration-block-semicolon-newline-before": "never-multi-line", "declaration-no-important": true, "font-family-name-quotes": "always-where-recommended", "font-weight-notation": [ "numeric", { "ignore": [ "relative" ] } ], "font-family-no-missing-generic-family-keyword": [ true, { "ignoreFontFamilies": [ "Material Icons" ] }], "function-comma-newline-before": "never-multi-line", "function-url-no-scheme-relative": true, "function-url-quotes": "always", "media-feature-name-no-unknown": [ true, { "ignoreMediaFeatureNames": [ "prefers-reduced-motion" ] } ], "media-feature-name-no-vendor-prefix": true, "media-query-list-comma-newline-before": "never-multi-line", "no-descending-specificity": null, "no-duplicate-selectors": true, "order/order": [ { "name": "extend", "type": "at-rule" }, { "hasBlock": false, "name": "include", "type": "at-rule" }, "declarations", { "hasBlock": true, "type": "at-rule" }, { "selector": "^&[^:]", "type": "rule" }, { "selector": "^&:", "type": "rule" }, { "selector": "^[*]", "type": "rule" }, { "selector": "^[a-z]", "type": "rule" }, { "selector": "^[.]", "type": "rule" }, { "type": "rule" } ], "order/properties-order": [ "align-content", "align-items", "align-self", "animation", "animation-delay", "animation-direction", "animation-duration", "animation-fill-mode", "animation-iteration-count", "animation-name", "animation-play-state", "animation-timing-function", "appearance", "backface-visibility", "background", "background-attachment", "background-clip", "background-color", "background-image", "background-position", "background-repeat", "background-size", "border", "border-top", "border-right", "border-bottom", "border-left", "border-collapse", "border-color", "border-top-color", "border-right-color", "border-bottom-color", "border-left-color", "border-radius", "border-top-left-radius", "border-top-right-radius", "border-bottom-right-radius", "border-bottom-left-radius", "border-spacing", "border-style", "border-top-style", "border-right-style", "border-bottom-style", "border-left-style", "border-width", "border-top-width", "border-right-width", "border-bottom-width", "border-left-width", "box-shadow", "box-sizing", "caption-side", "clear", "clip", "clip-path", "color", "columns", "column-count", "column-fill", "column-gap", "column-rule", "column-rule-color", "column-rule-style", "column-rule-width", "column-span", "column-width", "content", "counter-increment", "counter-reset", "cursor", "direction", "display", "empty-cells", "fill", "filter", "flex", "flex-basis", "flex-direction", "flex-flow", "flex-grow", "flex-shrink", "flex-wrap", "float", "font", "font-effect", "font-emphasize", "font-emphasize-position", "font-emphasize-style", "font-family", "font-size", "font-size-adjust", "font-smoothing", "font-stretch", "font-style", "font-variant", "font-weight", "height", "hyphens", "justify-content", "letter-spacing", "line-height", "list-style", "list-style-image", "list-style-position", "list-style-type", "margin", "margin-top", "margin-right", "margin-bottom", "margin-left", "margin-collapse", "margin-top-collapse", "margin-right-collapse", "margin-bottom-collapse", "margin-left-collapse", "mask", "mask-image", "max-height", "max-width", "min-height", "min-width", "nav-index", "nav-up", "nav-right", "nav-down", "nav-left", "opacity", "order", "orphans", "outline", "outline-color", "outline-offset", "outline-style", "outline-width", "overflow", "overflow-x", "overflow-y", "padding", "padding-top", "padding-right", "padding-bottom", "padding-left", "page-break-after", "page-break-before", "page-break-inside", "perspective", "perspective-origin", "pointer-events", "position", "top", "right", "bottom", "left", "quotes", "resize", "size", "speak", "src", "stroke", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-width", "tab-size", "table-layout", "text-align", "text-align-last", "text-decoration", "text-emphasis", "text-emphasis-color", "text-emphasis-position", "text-emphasis-style", "text-indent", "text-justify", "text-overflow", "text-overflow-ellipsis", "text-overflow-mode", "text-rendering", "text-outline", "text-shadow", "text-transform", "text-wrap", "touch-action", "transform", "transform-origin", "transform-style", "transition", "transition-delay", "transition-duration", "transition-property", "transition-timing-function", "unicode-bidi", "user-select", "vertical-align", "visibility", "white-space", "width", "windows", "word-break", "word-spacing", "word-wrap", "z-index", "zoom" ], "property-no-vendor-prefix": true, "scss/dollar-variable-default": [ true, { "ignore": "local" } ], "selector-attribute-quotes": "always", "selector-list-comma-newline-before": "never-multi-line", "selector-list-comma-space-after": "always-single-line", "selector-max-attribute": 2, "selector-max-class": 4, "selector-max-combinators": 4, "selector-max-compound-selectors": 4, "selector-max-empty-lines": 1, "selector-max-id": 0, "selector-max-type": 2, "selector-max-universal": 1, "selector-no-qualifying-type": true, "selector-no-vendor-prefix": true, "string-quotes": "single", "value-keyword-case": "lower", "value-list-comma-newline-before": "never-multi-line", "value-no-vendor-prefix": true } }