https://github.com/twbs/bootstrap
Revision 056a0e0d756032f9a3d847f6ab8a6a16424aae05 authored by dependabot[bot] on 17 December 2023, 08:41:14 UTC, committed by GitHub on 17 December 2023, 08:41:14 UTC
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 to 3.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7807c8d
Raw File
Tip revision: 056a0e0d756032f9a3d847f6ab8a6a16424aae05 authored by dependabot[bot] on 17 December 2023, 08:41:14 UTC
Build(deps): Bump github/codeql-action from 2 to 3 (#39502)
Tip revision: 056a0e0
.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