chore: stylelint ignore 'include' and 'mixin' @rules
This commit is contained in:
parent
4548da4bac
commit
8742703542
|
@ -4,6 +4,15 @@
|
||||||
"stylelint-scss"
|
"stylelint-scss"
|
||||||
],
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
|
"at-rule-no-unknown": [
|
||||||
|
true,
|
||||||
|
{
|
||||||
|
"ignoreAtRules": [
|
||||||
|
"include",
|
||||||
|
"mixin"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
"indentation": 2,
|
"indentation": 2,
|
||||||
"string-quotes": "single",
|
"string-quotes": "single",
|
||||||
"no-descending-specificity": null
|
"no-descending-specificity": null
|
||||||
|
|
Loading…
Reference in New Issue