templates/vitekit/my-vite-project/.stylelintrc
2026-04-12 21:03:18 +03:00

64 lines
1.5 KiB
Plaintext

{
"extends": [
"stylelint-config-clean-order",
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-scss"
],
"ignoreFiles": [
"**/*.min.css"
],
"rules": {
"at-rule-empty-line-before": [
"always",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"custom-property-empty-line-before": [
"always",
{
"except": [
"after-custom-property",
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"declaration-empty-line-before": [
"always",
{
"except": [
"after-declaration",
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"no-descending-specificity": null,
"no-invalid-double-slash-comments": null,
"no-invalid-position-at-import-rule": null,
"selector-class-pattern": null,
"selector-pseudo-class-no-unknown": null,
"scss/at-else-empty-line-before": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-mixin-parentheses-space-before": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/load-no-partial-leading-underscore": null,
"scss/no-global-function-names": null,
"property-no-vendor-prefix": true
}
}