https://github.com/twbs/bootstrap
Revision 58b1be927f43c779377e478df2d119f2ddf956ca authored by XhmikosR on 13 May 2021, 16:22:20 UTC, committed by GitHub on 13 May 2021, 16:22:20 UTC
* Bump version to 5.0.1.

* Dist
1 parent 130a5ba
Raw File
Tip revision: 58b1be927f43c779377e478df2d119f2ddf956ca authored by XhmikosR on 13 May 2021, 16:22:20 UTC
Release v5.0.1 (#33972)
Tip revision: 58b1be9
.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