Skip to content
Snippets Groups Projects
Select Git revision
  • 5d9c84bac4cd93bfd09eaceea91f8e01fdc196b0
  • master default protected
  • greenkeeper/webpack-4.10.1
  • greenkeeper/webpack-4.10.0
  • greenkeeper/webpack-4.9.2
  • greenkeeper/promise-polyfill-8.0.0
  • greenkeeper/webpack-4.9.1
  • greenkeeper/webpack-4.9.0
  • greenkeeper/webpack-manifest-plugin-2.0.3
  • greenkeeper/update-to-node-10
  • gh-pages
  • greenkeeper/webpack-4.8.3
  • greenkeeper/webpack-4.8.2
  • greenkeeper/webpack-4.7.0
  • greenkeeper/webpack-manifest-plugin-2.0.2
  • greenkeeper/webpack-manifest-plugin-2.0.1
  • greenkeeper/style-loader-0.21.0
  • greenkeeper/webpack-4.6.0
  • greenkeeper/sass-loader-7.0.1
  • greenkeeper/sass-loader-7.0.0
  • greenkeeper/webpack-manifest-plugin-2.0.0
  • 2.7.3
  • 2.7.2
  • 2.7.1
  • 2.7.0
  • 2.6.6
  • 2.6.5
  • 2.6.4
  • 2.6.3
  • 2.6.2
  • 2.6.1
  • 2.6.0
  • 2.5.5
  • 2.5.4
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.0
  • 2.3.0
  • 2.2.6
41 results

.stylelintrc

Blame
  • user avatar
    squidfunk authored and Martin Donath committed
    147e5ef7
    History
    .stylelintrc 3.94 KiB
    {
      "extends": "stylelint-config-standard",
      "plugins": [
        "stylelint-order",
        "stylelint-scss"
      ],
      "rules": {
        "at-rule-empty-line-before": null,
        "at-rule-no-unknown": null,
        "at-rule-no-vendor-prefix": true,
        "block-opening-brace-space-before": null,
        "block-closing-brace-newline-after": ["always", {
          "ignoreAtRules": [
            "if",
            "else",
            "elseif"
          ]
        }],
        "color-hex-case": "upper",
        "color-hex-length": "long",
        "color-named": "never",
        "comment-empty-line-before": ["always", {
          "ignore": ["stylelint-commands"]
        }],
        "font-family-name-quotes": "always-where-recommended",
        "font-weight-notation": "numeric",
        "function-url-quotes": "always",
        "no-unknown-animations": true,
        "order/order": [
          "custom-properties",
          "declarations"
        ],
        "order/properties-order": [
          "display",
          "position",
          "top",
          "right",
          "bottom",
          "left",
    
          "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",
          "clip",
    
          "columns",
          "column-gap",
          "column-fill",
          "column-rule",
          "column-span",
          "column-count",
          "column-width",
    
          "transform",
          "transform-box",
          "transform-origin",
          "transform-style",
    
          "transition",
          "transition-delay",
          "transition-duration",
          "transition-property",
          "transition-timing-function",
    
          "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-left-radius",
          "border-bottom-right-radius",
    
          "border-color",
          "border-top-color",
          "border-right-color",
          "border-bottom-color",
          "border-left-color",
    
          "outline",
          "outline-color",
          "outline-offset",
          "outline-style",
          "outline-width",
    
          "background",
          "background-attachment",
          "background-clip",
          "background-color",
          "background-image",
          "background-repeat",
          "background-position",
          "background-size",
    
          "color",
    
          "font",
          "font-family",
          "font-size",
          "font-smoothing",
          "font-style",
          "font-variant",
          "font-weight",
    
          "letter-spacing",
          "line-height",
          "list-style",
    
          "text-align",
          "text-decoration",
          "text-indent",
          "text-overflow",
          "text-rendering",
          "text-shadow",
          "text-transform",
          "text-wrap",
    
          "white-space",
          "word-spacing",
    
          "border-collapse",
          "border-spacing",
          "box-shadow",
          "caption-side",
          "content",
          "cursor",
          "empty-cells",
          "opacity",
          "overflow",
          "quotes",
          "speak",
          "table-layout",
          "vertical-align",
          "visibility",
          "z-index"
        ],
        "property-no-vendor-prefix": true,
        "selector-class-pattern": "^[a-z0-9]+(-[a-z0-9]+)*(__[a-z]+)?(--[a-z]+)?$",
        "selector-descendant-combinator-no-non-space": null,
        "string-quotes": "double",
        "unit-whitelist": ["rem", "em", "deg", "s", "%", "mm", "vh"],
        "value-keyword-case": "lower",
        "value-no-vendor-prefix": true
      }
    }