https://github.com/twbs/bootstrap
Revision 0840105d7f794c8f1c429eced58ffb80af453ff8 authored by XhmikosR on 09 December 2021, 19:52:39 UTC, committed by XhmikosR on 29 January 2022, 11:25:30 UTC
1 parent 558002f
Raw File
Tip revision: 0840105d7f794c8f1c429eced58ffb80af453ff8 authored by XhmikosR on 09 December 2021, 19:52:39 UTC
SelectorEngine: remove moot space
Tip revision: 0840105
.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