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 1010
1111 steps :
1212 - uses : actions/checkout@v1
13- - name : Use Node.js ${{ matrix.node-version }}
13+ - name : Node setup
1414 uses : actions/setup-node@v1
1515 with :
1616 node-version : ${{ matrix.node-version }}
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ const tooOpinionated = [
6161 'scss/at-import-partial-extension-whitelist' ,
6262 'scss/dollar-variable-default' ,
6363 'scss/no-dollar-variables' ,
64+ 'order/properties-alphabetical-order' ,
6465] ;
6566
6667const overridenByOtherRule = [
@@ -125,10 +126,14 @@ const toReview = [
125126 'scss/no-duplicate-dollar-variables' ,
126127 // https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/selector-no-union-class-name/README.md
127128 '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' ,
128131 // https://stylelint.io/user-guide/rules/selector-no-qualifying-type/
129132 'selector-no-qualifying-type' ,
130133 // https://stylelint.io/user-guide/rules/shorthand-property-no-redundant-values/
131134 'shorthand-property-no-redundant-values' ,
135+ // https://github.com/hudochenkov/stylelint-order/blob/master/rules/properties-order/README.md
136+ 'order/properties-order' ,
132137] ;
133138
134139const unusedRules = [
You can’t perform that action at this time.
0 commit comments