https://github.com/twbs/bootstrap
Revision 723fff975e1c9969954713de8674276933280b7c authored by dependabot[bot] on 27 February 2024, 13:20:22 UTC, committed by GitHub on 27 February 2024, 13:20:22 UTC
Bumps [eslint](https://github.com/eslint/eslint) from 8.56.0 to 8.57.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.56.0...v8.57.0)

---
updated-dependencies:
- dependency-name: eslint
  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 c55a5fa
Raw File
Tip revision: 723fff975e1c9969954713de8674276933280b7c authored by dependabot[bot] on 27 February 2024, 13:20:22 UTC
Build(deps-dev): Bump eslint from 8.56.0 to 8.57.0 (#39711)
Tip revision: 723fff9
.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