Skip to content

Instantly share code, notes, and snippets.

@chetanraj
Created May 6, 2019 08:08
Show Gist options
  • Save chetanraj/52947a4886439a0e1b8f1275f89f70da to your computer and use it in GitHub Desktop.
Save chetanraj/52947a4886439a0e1b8f1275f89f70da to your computer and use it in GitHub Desktop.
My stylelint config
{
"rules": {
"color-hex-case": "lower",
"block-no-empty": true,
"number-leading-zero": "never",
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never",
"color-hex-length": "short",
"indentation": 2,
"string-quotes": "double",
"color-no-invalid-hex": true,
"no-extra-semicolons": true,
"no-duplicate-selectors": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment