Skip to content

Instantly share code, notes, and snippets.

@knowuh
Created September 6, 2013 14:58
Show Gist options
  • Save knowuh/6464991 to your computer and use it in GitHub Desktop.
Save knowuh/6464991 to your computer and use it in GitHub Desktop.
SublimeLinter.sublime-settings
{
"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