35 lines
600 B
Plaintext
Raw Normal View History

2019-07-05 16:38:25 +02:00
{
"extends": [
"stylelint-config-prettier",
"stylelint-config-standard"
],
"plugins": [
2019-07-05 16:49:43 +02:00
"stylelint-order",
"stylelint-scss"
2019-07-05 16:38:25 +02:00
],
"rules": {
2019-07-05 16:49:43 +02:00
"at-rule-no-unknown": [
true, {
"ignoreAtRules": [
"at-root",
"content",
"debug",
"each",
"else",
"error",
"extend",
"for",
"function",
"if",
"include",
"mixin",
"return",
"warn",
"while",
]
}
],
2019-07-05 16:38:25 +02:00
"order/properties-alphabetical-order": true
}
}