Skip to content

Instantly share code, notes, and snippets.

@wheresrhys
Created February 1, 2013 16:33
Show Gist options
  • Save wheresrhys/4692410 to your computer and use it in GitHub Desktop.
Save wheresrhys/4692410 to your computer and use it in GitHub Desktop.
Jshint sublime config file
{
"node": true,
"browser": true,
"es5": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": true,
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
// "smarttabs": true,
"noempty": true,
"maxparams": 3,
"boss": true,
"expr": true,
"multistr": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment