Created
June 24, 2016 16:25
-
-
Save DawnPaladin/30b0da6e462bf5b572cd4bdba426d6f2 to your computer and use it in GitHub Desktop.
Simple stylelint config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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