|
9 | 9 |
|
10 | 10 | rules:
|
11 | 11 |
|
12 |
| - # Specify percentage or number notation for alpha-values. |
| 12 | + # Specify percentage or number notation for alpha-values. |
13 | 13 | alpha-value-notation: number
|
14 | 14 |
|
15 | 15 | # Specify a list of disallowed at-rules.
|
@@ -125,6 +125,9 @@ rules:
|
125 | 125 | # Disallow empty comments.
|
126 | 126 | comment-no-empty: true
|
127 | 127 |
|
| 128 | + # Specify a pattern for comments. |
| 129 | + #comment-pattern: |
| 130 | + |
128 | 131 | # Require or disallow whitespace on the inside of comment markers.
|
129 | 132 | comment-whitespace-inside: always
|
130 | 133 |
|
@@ -216,7 +219,7 @@ rules:
|
216 | 219 | font-family-no-missing-generic-family-keyword: true
|
217 | 220 |
|
218 | 221 | # Require numeric or named (where possible) `font-weight` values.
|
219 |
| - font-weight-notation: named-where-possible |
| 222 | + font-weight-notation: numeric |
220 | 223 |
|
221 | 224 | # Specify a blacklist of disallowed functions.
|
222 | 225 | #function-blacklist:
|
@@ -371,6 +374,12 @@ rules:
|
371 | 374 | # Disallow double-slash comments (`//`) which are not supported by CSS.
|
372 | 375 | no-invalid-double-slash-comments: true
|
373 | 376 |
|
| 377 | + # Disallow invalid position `@import` rules within a stylesheet. |
| 378 | + no-invalid-position-at-import-rule: true |
| 379 | + |
| 380 | + # Disallow irregular whitespaces. |
| 381 | + no-irregular-whitespace: true |
| 382 | + |
374 | 383 | # Disallow missing end-of-source newlines.
|
375 | 384 | no-missing-end-of-source-newline: true
|
376 | 385 |
|
@@ -415,6 +424,9 @@ rules:
|
415 | 424 | # Require a single space or disallow whitespace on the inside of the brackets within attribute selectors.
|
416 | 425 | selector-attribute-brackets-space-inside: never
|
417 | 426 |
|
| 427 | + # Specify a list of disallowed attribute names. |
| 428 | + #selector-attribute-name-disallowed-list: |
| 429 | + |
418 | 430 | # Specify a blacklist of disallowed attribute operators.
|
419 | 431 | #selector-attribute-operator-blacklist:
|
420 | 432 |
|
@@ -448,6 +460,9 @@ rules:
|
448 | 460 | # Disallow non-space characters for descendant combinators of selectors.
|
449 | 461 | selector-descendant-combinator-no-non-space: true
|
450 | 462 |
|
| 463 | + # Specify a list of disallowed selectors. |
| 464 | + #selector-disallowed-list: |
| 465 | + |
451 | 466 | # Specify a pattern for ID selectors.
|
452 | 467 | #selector-id-pattern:
|
453 | 468 |
|
@@ -1073,9 +1088,6 @@ rules:
|
1073 | 1088 | # Disallow duplicate mixins within a stylesheet.
|
1074 | 1089 | scss/no-duplicate-mixins: true
|
1075 | 1090 |
|
1076 |
| - # Disallows the use of global function names, as these global functions are now located inside built-in Sass modules. |
1077 |
| - scss/no-global-function-names: true |
1078 |
| - |
1079 | 1091 | # Disallow linebreaks after Sass operators.
|
1080 | 1092 | scss/operator-no-newline-after: true
|
1081 | 1093 |
|
|
0 commit comments