https://github.com/twbs/bootstrap
Revision f2d33b2a1e5c69c67c5601d782923152aafa7661 authored by Mark Otto on 10 February 2022, 00:13:13 UTC, committed by Mark Otto on 11 February 2022, 03:51:23 UTC
1 parent 7e71fe7
Raw File
Tip revision: f2d33b2a1e5c69c67c5601d782923152aafa7661 authored by Mark Otto on 10 February 2022, 00:13:13 UTC
Bump bundlewatch
Tip revision: f2d33b2
.stylelintrc
{
  "extends": [
    "stylelint-config-twbs-bootstrap"
  ],
  "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