Skip to content

Commit e396d41

Browse files
fix: disable problematic color-function-alias-notation rule
The stylelint-config-standard 38.0.0 upgrade introduced a new rule color-function-alias-notation that incorrectly flags valid rgba() functions with alpha values other than 1. Disabling this rule to prevent false positives while maintaining code quality. Co-authored-by: martijnrusschen <[email protected]>
1 parent 1502197 commit e396d41

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.stylelintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"property-no-vendor-prefix": null,
1818
"alpha-value-notation": null,
1919
"color-function-notation": null,
20+
"color-function-alias-notation": null,
2021
"selector-pseudo-class-no-unknown": [
2122
true,
2223
{

0 commit comments

Comments
 (0)