Skip to content

Commit 677f788

Browse files
committed
Add missing rules to unused whitelist
1 parent e4ea1a2 commit 677f788

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
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 }}

src/unused.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

6667
const 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

134139
const unusedRules = [

0 commit comments

Comments
 (0)