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
8992 # Require a single space or disallow whitespace before the opening brace of blocks.
9093 block-opening-brace-space-before : always
9194
95+ # Specify modern or legacy notation for applicable color-functions.
96+ color-function-notation : legacy
97+
9298 # Specify lowercase or uppercase for hexadecimal color values.
9399 color-hex-case : lower
94100
@@ -120,7 +126,7 @@ rules:
120126 # custom-media-pattern:
121127
122128 # Require or disallow an empty line before custom properties (Autofixable).
123- custom-property-empty-line-before : never
129+ custom-property-empty-line-before : always
124130
125131 # Specify a pattern for custom properties.
126132 # custom-property-pattern:
@@ -254,6 +260,9 @@ rules:
254260 # Require or disallow whitespace after functions.
255261 function-whitespace-after : always
256262
263+ # Specify number or angle notation for degree hues.
264+ hue-degree-notation : angle
265+
257266 # Specify indentation.
258267 indentation : 4
259268
@@ -1028,6 +1037,9 @@ rules:
10281037 # Disallow unknown at-rules. Should be used instead of stylelint's `at-rule-no-unknown`.
10291038 scss/at-rule-no-unknown : true
10301039
1040+ # Disallow empty comments.
1041+ scss/comment-no-empty : true
1042+
10311043 # Require a newline after the colon in `$`-variable declarations.
10321044 scss/dollar-variable-colon-newline-after : always-multi-line
10331045
@@ -1043,6 +1055,12 @@ rules:
10431055 # Disallow duplicate dollar variables within a stylesheet.
10441056 scss/no-duplicate-dollar-variables : true
10451057
1058+ # Disallow duplicate mixins within a stylesheet.
1059+ scss/no-duplicate-mixins : true
1060+
1061+ # Disallows the use of global function names, as these global functions are now located inside built-in Sass modules.
1062+ scss/no-global-function-names : true
1063+
10461064 # Disallow linebreaks after Sass operators.
10471065 scss/operator-no-newline-after : true
10481066
0 commit comments