Skip to content

Instantly share code, notes, and snippets.

@ryanand26
Created October 23, 2013 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanand26/7118655 to your computer and use it in GitHub Desktop.
Save ryanand26/7118655 to your computer and use it in GitHub Desktop.
My SublimeLinter user settings file
/*
SublimeLinter user settings
*/
{
"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,
"bitwise": true,
"eqeqeq": true,
"passfail": false,
"nomen": false,
"plusplus": false,
"undef": true,
"evil": true,
"curly": true,
"eqnull": true,
"browser": true
,
"globals": {
"jQuery": true,
"$": true,
"module": true,
"define": true,
"require": true
}
},
"sublimelinter_gutter_marks_theme": "bright"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment