Skip to content

Instantly share code, notes, and snippets.

@wzup
Created September 9, 2015 11:48
Show Gist options
  • Save wzup/9fbf584c3e84a73092c7 to your computer and use it in GitHub Desktop.
Save wzup/9fbf584c3e84a73092c7 to your computer and use it in GitHub Desktop.
.jshintrc file example, minimal settings, copy/paste to root folder
{
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"eqeqeq": true,
"eqnull": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"nonew": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": false,
"trailing": true,
"sub": true,
"maxlen": 80
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment