Skip to content

Instantly share code, notes, and snippets.

@waleedsamy
Created October 7, 2015 15:15
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 waleedsamy/cee8d812c8283515b323 to your computer and use it in GitHub Desktop.
Save waleedsamy/cee8d812c8283515b323 to your computer and use it in GitHub Desktop.
recommended jshint config file
{
"maxerr": 10,
"curly": true,
"boss": true,
"expr": true,
"node": true,
"onevar": true,
"white": true,
"eqeqeq": true,
"latedef": true,
"newcap": true,
"noempty": true,
"nonew": true,
"plusplus": false,
"undef": true,
"trailing": true,
"passfail": false,
"forin": false,
"noarg": true,
"undef": true,
"unused": false,
"laxbreak": true,
"laxcomma": true,
"eqnull": true,
"immed": true,
"noarg": true,
"quotmark": "double",
"smarttabs": true,
"trailing": true,
"undef": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment