Created
April 12, 2012 15:57
-
-
Save knowuh/2368568 to your computer and use it in GitHub Desktop.
This file contains hidden or 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_delay": 1, | |
"sublimelinter_fill_outlines": false, | |
"sublimelinter_gutter_marks": true, | |
"sublimelinter_popup_errors_on_save": true, | |
"javascript_linter": "jshint", | |
// jshint: options for linting JavaScript. See http://jshint.com/#docs for more info. | |
// By deault, eval is allowed. | |
"jshint_options": | |
{ | |
"evil": true, | |
"regexdash": true, | |
"browser": true, | |
"wsh": true, | |
"trailing": false, | |
"sub": true | |
}, | |
// Set to true to highlight annotations | |
"sublimelinter_notes": false, | |
// The set of annotation phrases to highlight | |
"annotations": ["TODO", "README", "FIXME"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment