Skip to content

Instantly share code, notes, and snippets.

@trainiac
Created December 13, 2017 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trainiac/210e8fca85d1256eefbb855a551ff7d1 to your computer and use it in GitHub Desktop.
Save trainiac/210e8fca85d1256eefbb855a551ff7d1 to your computer and use it in GitHub Desktop.
module.exports = {
extends: ['stylelint-config-recommended-scss', 'stylelint-config-prettier'],
processors: ['stylelint-processor-html'],
plugins: ['stylelint-no-unsupported-browser-features'],
quiet: false,
rules: {
'no-invalid-double-slash-comments': null,
'no-empty-source': null,
'property-no-unknown': true,
'color-no-invalid-hex': true,
'selector-pseudo-element-colon-notation': 'single',
'plugin/no-unsupported-browser-features': [
true,
{
ignore: [
'viewport-units', // only a few browsers dont support vmax
'flexbox', // flex box is required, ie11 implements most of it
'calc', // only multiplication and division are not supported in Android Browser >4.4 and we dont use it
'outline', // this is pretty much fully supported except color and offset which we dont use
'background-img-opts', // not fully supported by Android Browser 4.2-4.3
'font-unicode-range', // this is for font-face which dont make special uses of
],
},
],
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment