@@ -106,6 +106,25 @@ const formattingByPrettier = [
106
106
] ;
107
107
108
108
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.
109
128
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/at-each-key-value-single-line/README.md
110
129
'scss/at-each-key-value-single-line' ,
111
130
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/at-function-named-arguments/README.md
0 commit comments