Skip to content

Instantly share code, notes, and snippets.

@ntorgov
Last active May 19, 2017 04:51
Show Gist options
  • Save ntorgov/a63ebe5f25f398687342e284d7fdb43b to your computer and use it in GitHub Desktop.
Save ntorgov/a63ebe5f25f398687342e284d7fdb43b to your computer and use it in GitHub Desktop.
Proper Stylelint
{
"rules": {
"block-no-empty": null,
"color-no-invalid-hex": true,
"comment-empty-line-before": [
"always",
{
"ignore": [
"stylelint-command",
"after-comment"
]
}
],
"declaration-colon-space-after": "always",
"indentation": [
"tab",
{
"except": [
"value"
]
}
],
"max-empty-lines": 2,
"rule-nested-empty-line-before": [
"always",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"unit-whitelist": [
"vw",
"px",
"em",
"rem",
"%",
"s",
"deg"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment