Skip to content

Instantly share code, notes, and snippets.

@ermish
Created November 3, 2022 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ermish/0e201d59de314925f6346f889fd13dc5 to your computer and use it in GitHub Desktop.
Save ermish/0e201d59de314925f6346f889fd13dc5 to your computer and use it in GitHub Desktop.
Stylelint Config - Vue
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-recommended-vue"
],
"plugins": [
"stylelint-order"
],
"rules": {
"color-hex-length": "short",
"color-named": "never",
"comment-empty-line-before": null,
"declaration-no-important": true,
"declaration-block-trailing-semicolon": "never",
"indentation": 2,
"length-zero-no-unit": null,
"max-line-length": 100,
"max-nesting-depth": 4,
"no-descending-specificity": null,
"no-eol-whitespace": [
true,
{
"ignore": [
"empty-lines"
]
}
],
"shorthand-property-no-redundant-values": null,
"selector-list-comma-newline-after": "always-multi-line",
"string-quotes": "single",
"value-list-comma-newline-after": "always-multi-line",
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"variants",
"responsive",
"screen"
]
}
],
"order/order": [
{
"type": "at-rule",
"name": "include"
},
{
"type": "at-rule",
"name": "extend"
},
"custom-properties",
"dollar-variables",
"declarations",
"rules",
{
"type": "at-rule",
"name": "media"
}
],
"order/properties-alphabetical-order": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment