Last active
December 11, 2015 07:08
-
-
Save gordallott/4563788 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
{ | |
"sublimelinter_mark_style": "none", | |
"sublimelinter_gutter_marks": true, | |
"sublimelinter_popup_errors_on_save": true, | |
"jshint_options": | |
{ | |
// To fix column positions for JSHint errors you may want to add `"indent": 1` to your | |
// **User** "jshint_options". This issue affects users with tabs for indentation. | |
// This fix was reverted due to a conflict with using the `"white": true` option. | |
// "indent": 1, | |
"evil": true, | |
"curly": true, | |
"latedef": false, | |
"noempty": false, | |
"undef": true, | |
"unused": false, | |
"trailing": false, | |
"asi": true, | |
"es5": true, | |
"laxcomma": true, // real useful | |
"regexdash": true, | |
"devel": true, | |
"jquery": true, | |
"node": true, | |
"sub": true, | |
"strict": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment