https://github.com/twbs/bootstrap
Revision a6d774c93e4667e8a426a9a4f6644bc1b0bebad8 authored by dependabot[bot] on 21 February 2023, 15:27:06 UTC, committed by GitHub on 21 February 2023, 15:27:06 UTC
Bumps [rollup](https://github.com/rollup/rollup) from 3.15.0 to 3.17.2.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v3.15.0...v3.17.2)

---
updated-dependencies:
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 28d9c0c
Raw File
Tip revision: a6d774c93e4667e8a426a9a4f6644bc1b0bebad8 authored by dependabot[bot] on 21 February 2023, 15:27:06 UTC
Build(deps-dev): Bump rollup from 3.15.0 to 3.17.2 (#38097)
Tip revision: a6d774c
.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