Skip to content

Instantly share code, notes, and snippets.

@jeffschwartz
Last active December 17, 2015 00:11
Show Gist options
  • Save jeffschwartz/5519398 to your computer and use it in GitHub Desktop.
Save jeffschwartz/5519398 to your computer and use it in GitHub Desktop.
My SublimeLinter.sublime-settings User File
{
// If true, lines with errors or warnings will have a gutter mark.
"sublimelinter_mark_style": "outline",
"sublimelinter_gutter_marks": true,
"sublimelinter_gutter_marks_theme": "alpha",
"jshint_options": {
// Options for linting JavaScript. See http://www.jshint.com/options/ for more info.
// By deault, eval is allowed.
// 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,
// enforcing options
"evil": true,
"regexdash": true,
"browser": true,
"wsh": true,
"sub": true,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"quotmark": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"eqnull": true,
"devel": true,
"jquery": true,
"node": true,
"worker": true,
"globals": {"$": false, "define": false, "require": false, "_": false}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment