Last active
September 3, 2017 15:25
-
-
Save isaaclyman/a9ee12f21823dd419da548b650e9295c to your computer and use it in GitHub Desktop.
My preferred StyleLint settings
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
{ | |
"plugins": ["stylelint-order"], | |
"processors": ["stylelint-processor-html"], | |
"extends": "stylelint-config-standard", | |
"rules": { | |
"indentation": 2, | |
"no-empty-source": null, | |
"order/properties-alphabetical-order": true, | |
"selector-type-no-unknown": [true, { | |
"ignore": ["custom-elements"] | |
}] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment