Revision 0fc117cec5962a697c7a9ab22f40fbad21a7519e authored by Mark Otto on 08 July 2021, 06:44:55 UTC, committed by GitHub on 08 July 2021, 06:44:55 UTC
Fixes #34421

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
1 parent f254047
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