Last active
December 16, 2015 21:09
-
-
Save blakeembrey/5497413 to your computer and use it in GitHub Desktop.
Sublime Linter Config
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
Show hidden characters
{ | |
"sublimelinter_notes": true, | |
"annotations": ["TODO", "README", "FIXME", "DEBUG"], | |
"sublimelinter_mark_style": "none", | |
"sublimelinter_gutter_marks": true, | |
"csslint_options": | |
{ | |
"adjoining-classes": "warning", | |
"box-model": false, | |
"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": "warning", | |
"font-faces": "warning", | |
"font-sizes": "warning", | |
"gradients": "warning", | |
"ids": "warning", | |
"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" | |
}, | |
"javascript_linter": "jshint", | |
"jshint_options": | |
{ | |
"node": true, | |
"browser": true, | |
"devel": true, | |
"nonstandard": true, | |
"worker": true, | |
"es5": true, | |
"esnext": true, | |
"bitwise": false, | |
"boss": true, | |
"camelcase": true, | |
"curly": true, | |
"eqeqeq": true, | |
"eqnull": true, | |
"expr": true, | |
"forin": true, | |
"immed": true, | |
"latedef": true, | |
"newcap": true, | |
"noarg": true, | |
"quotmark": "single", | |
"regexp": true, | |
"strict": false, | |
"undef": true, | |
"unused": true, | |
"trailing": true, | |
"smarttabs": true, | |
"immed": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment