Skip to content

Instantly share code, notes, and snippets.

@ChucKN0risK
Last active June 28, 2017 09:06
Show Gist options
  • Save ChucKN0risK/e850eb202b8522252923167c2d05015d to your computer and use it in GitHub Desktop.
Save ChucKN0risK/e850eb202b8522252923167c2d05015d to your computer and use it in GitHub Desktop.
StyleLint configuration file
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-no-unsupported-browser-features"
],
"rules": {
"at-rule-no-vendor-prefix": "true",
"media-feature-name-no-vendor-prefix": "true",
"property-no-vendor-prefix": "true",
"selector-no-vendor-prefix": "true",
"value-no-vendor-prefix": "true",
"declaration-empty-line-before": "false",
"at-rule-empty-line-before": "false",
"plugin/no-unsupported-browser-features": [true, {
"browsers": ['> 1%', 'Last 2 versions'],
"ignore": ['rem']
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment