https://github.com/twbs/bootstrap
Revision 413894d4691b5ebb1377fcf5ab8fd3bba49766a8 authored by dependabot[bot] on 05 September 2023, 10:05:37 UTC, committed by GitHub on 05 September 2023, 10:05:37 UTC
Bumps [hugo-bin](https://github.com/fenneclab/hugo-bin) from 0.113.0 to 0.114.2.
- [Release notes](https://github.com/fenneclab/hugo-bin/releases)
- [Commits](https://github.com/fenneclab/hugo-bin/compare/v0.113.0...v0.114.2)

---
updated-dependencies:
- dependency-name: hugo-bin
  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 fee563d
Raw File
Tip revision: 413894d4691b5ebb1377fcf5ab8fd3bba49766a8 authored by dependabot[bot] on 05 September 2023, 10:05:37 UTC
Build(deps-dev): Bump hugo-bin from 0.113.0 to 0.114.2 (#39147)
Tip revision: 413894d
.stylelintrc.json
{
  "extends": [
    "stylelint-config-twbs-bootstrap"
  ],
  "reportInvalidScopeDisables": true,
  "reportNeedlessDisables": true,
  "overrides": [
    {
      "files": "**/*.scss",
      "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
      }
    },
    {
      "files": "scss/**/*.{test,spec}.scss",
      "rules": {
        "scss/dollar-variable-default": null,
        "declaration-no-important": null
      }
    },
    {
      "files": "site/**/*.scss",
      "rules": {
        "scss/dollar-variable-default": null
      }
    },
    {
      "files": "site/**/examples/**/*.css",
      "rules": {
        "comment-empty-line-before": null,
        "property-no-vendor-prefix": null,
        "selector-no-qualifying-type": null,
        "value-no-vendor-prefix": null
      }
    }
  ]
}
back to top