Skip to content

Instantly share code, notes, and snippets.

@isaaclyman
Last active September 3, 2017 15:25
Show Gist options
  • Save isaaclyman/a9ee12f21823dd419da548b650e9295c to your computer and use it in GitHub Desktop.
Save isaaclyman/a9ee12f21823dd419da548b650e9295c to your computer and use it in GitHub Desktop.
My preferred StyleLint settings
{
"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