Created
September 6, 2013 14:58
-
-
Save knowuh/6464991 to your computer and use it in GitHub Desktop.
SublimeLinter.sublime-settings
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
Show hidden characters
{ | |
"sublimelinter_executable_map": { | |
"ruby": "/Users/npaessel/.rvm/bin/rvm-auto-ruby" | |
}, | |
"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