Revision f41bf2f7c5640da7a17872cb9f4dc0175246b100 authored by Mark Otto on 27 July 2021, 05:14:24 UTC, committed by GitHub on 27 July 2021, 05:14:24 UTC
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
1 parent 7646f6b
Raw File
.stylelintrc
{
  "extends": [
    "stylelint-config-twbs-bootstrap/scss"
  ],
  "rules": {
    "declaration-property-value-disallowed-list": {
      "border": "none",
      "outline": "none"
    },
    "function-disallowed-list": [
      "calc",
      "lighten",
      "darken"
    ],
    "property-disallowed-list": [
      "border-radius",
      "border-top-left-radius",
      "border-top-right-radius",
      "border-bottom-right-radius",
      "border-bottom-left-radius",
      "transition"
    ],
    "scss/dollar-variable-default": [
      true,
      {
        "ignore": "local"
      }
    ],
    "scss/selector-no-union-class-name": true
  }
}
back to top