pleroma-fe/.stylelintrc.json

33 lines
841 B
JSON
Raw Normal View History

2020-08-04 19:18:13 +03:00
{
"extends": [
2023-01-09 11:11:37 -05:00
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-config-html",
"stylelint-config-recommended-vue/scss"
2020-08-04 19:18:13 +03:00
],
"rules": {
"declaration-no-important": true,
2023-01-09 13:02:16 -05:00
"selector-class-pattern": null,
"import-notation": null,
"custom-property-pattern": null,
"keyframes-name-pattern": null,
"scss/operator-no-newline-after": null,
2025-07-27 17:28:21 +00:00
"declaration-property-value-no-unknown": true,
"scss/declaration-property-value-no-unknown": true,
"declaration-block-no-redundant-longhand-properties": [
true,
{
"ignoreShorthands": [
"grid-template",
"margin",
"padding",
"border",
"border-width",
"border-style",
"border-color",
"border-radius"
]
}
]
2020-08-04 19:18:13 +03:00
}
}