CSSLint settings for Sublime Linter > Settings - User
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
{ | |
// CSSLint options: | |
// Each rule can have three values: error|warning|true|false | |
// false => rule is disabled. | |
// true => alias to 'error' | |
// All rules are enabled by default. | |
// Currently the only difference between warnings and errors is in the prefix of the message in the Sublime status bar. | |
"csslint_options": | |
{ | |
"adjoining-classes": false, | |
"box-model": true, | |
"box-sizing": "warning", | |
"compatible-vendor-prefixes": "warning", | |
"display-property-grouping": true, | |
"duplicate-background-images": "warning", | |
"duplicate-properties": true, | |
"empty-rules": true, | |
"errors": true, | |
"fallback-colors": "warning", | |
"floats": false, | |
"font-faces": "warning", | |
"font-sizes": "warning", | |
"gradients": "warning", | |
"ids": false, | |
"import": "warning", | |
"important": "warning", | |
"known-properties": true, | |
"outline-none": "warning", | |
"overqualified-elements": "warning", | |
"qualified-headings": "warning", | |
"regex-selectors": "warning", | |
"rules-count": "warning", | |
"shorthand": "warning", | |
"text-indent": "warning", | |
"unique-headings": "warning", | |
"universal-selector": "warning", | |
"vendor-prefix": true, | |
"zero-units": "warning" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment