Skip to content

Commit fe295ed

Browse files
committed
Add newer rules to the list of unused rules to review for now
1 parent 8e39b4a commit fe295ed

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/unused.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,25 @@ const formattingByPrettier = [
106106
];
107107

108108
const toReview = [
109+
// List of rules from stylelint v13 upgrade.
110+
// https://stylelint.io/user-guide/rules/alpha-value-notation/
111+
'alpha-value-notation',
112+
// https://stylelint.io/user-guide/rules/color-function-notation/
113+
'color-function-notation',
114+
// https://stylelint.io/user-guide/rules/hue-degree-notation/
115+
'hue-degree-notation',
116+
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/comment-no-empty/README.md
117+
'scss/comment-no-empty',
118+
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/dollar-variable-empty-line-after/README.md
119+
'scss/dollar-variable-empty-line-after',
120+
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/dollar-variable-first-in-block/README.md
121+
'scss/dollar-variable-first-in-block',
122+
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/no-duplicate-mixins/README.md
123+
'scss/no-duplicate-mixins',
124+
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/no-global-function-names/README.md
125+
'scss/no-global-function-names',
126+
// ================================
127+
// List of rules we initially decided to ship the config without, although they could in theory be added.
109128
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/at-each-key-value-single-line/README.md
110129
'scss/at-each-key-value-single-line',
111130
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/at-function-named-arguments/README.md

0 commit comments

Comments
 (0)