mirror of
https://github.com/marcobiedermann/search-engine-optimization.git
synced 2025-03-03 04:09:16 -05:00
35 lines
600 B
Plaintext
35 lines
600 B
Plaintext
{
|
|
"extends": [
|
|
"stylelint-config-prettier",
|
|
"stylelint-config-standard"
|
|
],
|
|
"plugins": [
|
|
"stylelint-order",
|
|
"stylelint-scss"
|
|
],
|
|
"rules": {
|
|
"at-rule-no-unknown": [
|
|
true, {
|
|
"ignoreAtRules": [
|
|
"at-root",
|
|
"content",
|
|
"debug",
|
|
"each",
|
|
"else",
|
|
"error",
|
|
"extend",
|
|
"for",
|
|
"function",
|
|
"if",
|
|
"include",
|
|
"mixin",
|
|
"return",
|
|
"warn",
|
|
"while",
|
|
]
|
|
}
|
|
],
|
|
"order/properties-alphabetical-order": true
|
|
}
|
|
}
|