31 lines
734 B
JSON
31 lines
734 B
JSON
{
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-recommended-scss",
|
|
"stylelint-config-html",
|
|
"stylelint-config-recommended-vue/scss"
|
|
],
|
|
"rules": {
|
|
"declaration-no-important": true,
|
|
"selector-class-pattern": null,
|
|
"import-notation": null,
|
|
"custom-property-pattern": null,
|
|
"keyframes-name-pattern": null,
|
|
"scss/operator-no-newline-after": null,
|
|
"declaration-block-no-redundant-longhand-properties": [
|
|
true,
|
|
{
|
|
"ignoreShorthands": [
|
|
"grid-template",
|
|
"margin",
|
|
"padding",
|
|
"border",
|
|
"border-width",
|
|
"border-style",
|
|
"border-color",
|
|
"border-radius"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|