https://github.com/twbs/bootstrap
Revision 846d6606ec4eabe585dd0240e3d1b56256cfc8a6 authored by Mark Otto on 29 December 2022, 21:59:33 UTC, committed by Mark Otto on 04 January 2023, 17:56:11 UTC
1 parent 803d9d4
Raw File
Tip revision: 846d6606ec4eabe585dd0240e3d1b56256cfc8a6 authored by Mark Otto on 29 December 2022, 21:59:33 UTC
Include twbs/examples in the Examples page
Tip revision: 846d660
.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