Skip to content

Instantly share code, notes, and snippets.

@ceoro9
Created October 8, 2017 17:04
Show Gist options
  • Save ceoro9/eb1ac66b6c4c028030326bd6964978a5 to your computer and use it in GitHub Desktop.
Save ceoro9/eb1ac66b6c4c028030326bd6964978a5 to your computer and use it in GitHub Desktop.
JavaScript JSHint configuration
{
"esnext": true,
"forin": true,
"es5": false,
"curly": true,
"eqeqeq": false,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"sub": true,
"undef": true,
"unused": false,
"trailing": true,
"boss": true,
"eqnull": true,
"strict": false,
"immed": true,
"expr": true,
"latedef": "nofunc",
"quotmark": "single",
"indent": 2,
"node": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment