https://github.com/twbs/bootstrap
Revision bd84449330aae3fea92f5895c6ee3499e2fd709b authored by XhmikosR on 13 May 2022, 16:27:17 UTC, committed by GitHub on 13 May 2022, 16:27:17 UTC
* karma          ^6.3.19  →  ^6.3.20
* karma-jasmine   ^5.0.0  →   ^5.0.1
1 parent ce650e7
Raw File
Tip revision: bd84449330aae3fea92f5895c6ee3499e2fd709b authored by XhmikosR on 13 May 2022, 16:27:17 UTC
Update devDependencies and regenerate package-lock.json (#36342)
Tip revision: bd84449
.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