File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 10
10
11
11
steps :
12
12
- uses : actions/checkout@v1
13
- - name : Use Node.js ${{ matrix.node-version }}
13
+ - name : Node setup
14
14
uses : actions/setup-node@v1
15
15
with :
16
16
node-version : ${{ matrix.node-version }}
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ const tooOpinionated = [
61
61
'scss/at-import-partial-extension-whitelist' ,
62
62
'scss/dollar-variable-default' ,
63
63
'scss/no-dollar-variables' ,
64
+ 'order/properties-alphabetical-order' ,
64
65
] ;
65
66
66
67
const overridenByOtherRule = [
@@ -125,10 +126,14 @@ const toReview = [
125
126
'scss/no-duplicate-dollar-variables' ,
126
127
// https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/selector-no-union-class-name/README.md
127
128
'scss/selector-no-union-class-name' ,
129
+ // https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/media-feature-value-dollar-variable/README.md
130
+ 'scss/media-feature-value-dollar-variable' ,
128
131
// https://stylelint.io/user-guide/rules/selector-no-qualifying-type/
129
132
'selector-no-qualifying-type' ,
130
133
// https://stylelint.io/user-guide/rules/shorthand-property-no-redundant-values/
131
134
'shorthand-property-no-redundant-values' ,
135
+ // https://github.com/hudochenkov/stylelint-order/blob/master/rules/properties-order/README.md
136
+ 'order/properties-order' ,
132
137
] ;
133
138
134
139
const unusedRules = [
You can’t perform that action at this time.
0 commit comments