aboutsummaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss')
-rw-r--r--scss/helpers/_color-bg.scss2
-rw-r--r--scss/helpers/_colored-links.scss2
-rw-r--r--scss/tests/mixins/_utilities.test.scss2
3 files changed, 2 insertions, 4 deletions
diff --git a/scss/helpers/_color-bg.scss b/scss/helpers/_color-bg.scss
index b5ce7709c..c00acde5c 100644
--- a/scss/helpers/_color-bg.scss
+++ b/scss/helpers/_color-bg.scss
@@ -1,5 +1,3 @@
-// stylelint-disable function-name-case
-
// All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
@each $color, $value in $theme-colors {
$color-rgb: to-rgb($value);
diff --git a/scss/helpers/_colored-links.scss b/scss/helpers/_colored-links.scss
index 306a04edd..0b8178523 100644
--- a/scss/helpers/_colored-links.scss
+++ b/scss/helpers/_colored-links.scss
@@ -1,4 +1,4 @@
-// stylelint-disable function-name-case, declaration-no-important
+// stylelint-disable declaration-no-important
// All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
@each $color, $value in $theme-colors {
diff --git a/scss/tests/mixins/_utilities.test.scss b/scss/tests/mixins/_utilities.test.scss
index 16ae169b8..63fcae3af 100644
--- a/scss/tests/mixins/_utilities.test.scss
+++ b/scss/tests/mixins/_utilities.test.scss
@@ -258,7 +258,7 @@ $enable-important-utilities: false;
.desaturated-color-blue {
--bs-color-opacity: 1;
// Sass compilation will put a leading zero so we want to keep that one
- // stylelint-disable-next-line number-leading-zero
+ // stylelint-disable-next-line stylistic/number-leading-zero
--bs-color-saturation: 0.25;
color: hsla(192deg, var(--bs-color-saturation), 0, var(--bs-color-opacity));
}