Created
December 13, 2017 00:22
-
-
Save trainiac/210e8fca85d1256eefbb855a551ff7d1 to your computer and use it in GitHub Desktop.
This file contains 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
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