99
1010rules :
1111
12+ # Specify percentage or number notation for alpha-values.
13+ alpha-value-notation : number
14+
1215 # Specify a blacklist of disallowed at-rules.
1316 at-rule-blacklist :
1417 - debug
8487 # Require a single space or disallow whitespace before the opening brace of blocks.
8588 block-opening-brace-space-before : always
8689
90+ # Specify modern or legacy notation for applicable color-functions.
91+ color-function-notation : legacy
92+
8793 # Specify lowercase or uppercase for hexadecimal color values.
8894 color-hex-case : lower
8995
@@ -115,7 +121,7 @@ rules:
115121 # custom-media-pattern:
116122
117123 # Require or disallow an empty line before custom properties (Autofixable).
118- custom-property-empty-line-before : never
124+ custom-property-empty-line-before : always
119125
120126 # Specify a pattern for custom properties.
121127 # custom-property-pattern:
@@ -249,6 +255,9 @@ rules:
249255 # Require or disallow whitespace after functions.
250256 function-whitespace-after : always
251257
258+ # Specify number or angle notation for degree hues.
259+ hue-degree-notation : angle
260+
252261 # Specify indentation.
253262 indentation : 4
254263
@@ -1027,6 +1036,9 @@ rules:
10271036 # Disallow unknown at-rules. Should be used instead of stylelint's `at-rule-no-unknown`.
10281037 scss/at-rule-no-unknown : true
10291038
1039+ # Disallow empty comments.
1040+ scss/comment-no-empty : true
1041+
10301042 # Require a newline after the colon in `$`-variable declarations.
10311043 scss/dollar-variable-colon-newline-after : always-multi-line
10321044
@@ -1045,6 +1057,12 @@ rules:
10451057 # Disallow duplicate dollar variables within a stylesheet.
10461058 scss/no-duplicate-dollar-variables : true
10471059
1060+ # Disallow duplicate mixins within a stylesheet.
1061+ scss/no-duplicate-mixins : true
1062+
1063+ # Disallows the use of global function names, as these global functions are now located inside built-in Sass modules.
1064+ scss/no-global-function-names : true
1065+
10481066 # Disallow linebreaks after Sass operators.
10491067 scss/operator-no-newline-after : true
10501068
0 commit comments