Skip to content

Commit af0aa99

Browse files
committed
Fix of Stylelint config (whitelists @each rules)
1 parent 9ab66dd commit af0aa99

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/stylelint/default.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "stylelint-config-standard",
33
"rules": {
44
"at-rule-no-unknown": [true, {
5-
"ignoreAtRules": ["content", "extend", "for", "include", "mixin"]
5+
"ignoreAtRules": ["content", "each", "extend", "for", "include", "mixin"]
66
}],
77
"selector-pseudo-class-no-unknown": [true, {
88
"ignorePseudoClasses": ["global"]

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,5 @@
121121
"mkDistDir:prod": "mkdir -p dist/prod/shared/utils && mkdir -p dist/prod/client",
122122
"test": "npm run lint && npm run jest"
123123
},
124-
"version": "0.7.3"
124+
"version": "0.7.4"
125125
}

0 commit comments

Comments
 (0)