mirror of https://github.com/Fabio286/mizar.git
18 lines
403 B
Plaintext
18 lines
403 B
Plaintext
|
{
|
||
|
"extends": [
|
||
|
"stylelint-config-standard",
|
||
|
"stylelint-config-recommended-vue"
|
||
|
],
|
||
|
"fix": true,
|
||
|
"formatter": "verbose",
|
||
|
"plugins": [
|
||
|
"stylelint-scss"
|
||
|
],
|
||
|
"rules": {
|
||
|
"at-rule-no-unknown": null,
|
||
|
"no-descending-specificity": null,
|
||
|
"font-family-no-missing-generic-family-keyword": null,
|
||
|
"declaration-colon-newline-after": "always-multi-line"
|
||
|
},
|
||
|
"syntax": "scss"
|
||
|
}
|