Skip to content

Instantly share code, notes, and snippets.

@DawnPaladin
Created June 24, 2016 16:25
Show Gist options
  • Save DawnPaladin/30b0da6e462bf5b572cd4bdba426d6f2 to your computer and use it in GitHub Desktop.
Save DawnPaladin/30b0da6e462bf5b572cd4bdba426d6f2 to your computer and use it in GitHub Desktop.
Simple stylelint config
{
"rules": {
"block-no-empty": true,
"color-no-invalid-hex": true,
"declaration-block-no-ignored-properties": true,
"declaration-block-trailing-semicolon": "always",
"indentation": "tab",
"no-extra-semicolons": true,
"no-invalid-double-slash-comments": true,
"selector-type-no-unknown": true,
"unit-no-unknown": true,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment