https://github.com/twbs/bootstrap
Raw File
Tip revision: a36ea00df413e9b98fa9accacc3fe81f71dd599c authored by Julien Déramond on 19 February 2023, 15:14:24 UTC
Docs: Astro prototype
Tip revision: a36ea00
.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
  },
  "overrides": [
    {
      "files": "scss/**/*.{test,spec}.scss",
      "rules": {
        "scss/dollar-variable-default": null,
        "declaration-no-important": null
      }
    }
  ]
}
back to top