Skip to content

Instantly share code, notes, and snippets.

@Joaquin6
Last active February 22, 2019 16:28
Show Gist options
  • Select an option

  • Save Joaquin6/98b30fe84c7084b97461a6a1c714a995 to your computer and use it in GitHub Desktop.

Select an option

Save Joaquin6/98b30fe84c7084b97461a6a1c714a995 to your computer and use it in GitHub Desktop.
A copy of suitable .jshintrc file at `$HOME` for Mac
{
"asi": false,
"boss": false,
"camelcase": false,
"curly": true,
"eqeqeq": true,
"eqnull": false,
"esversion": 6,
"evil": false,
"expr": false,
"forin": true,
"funcscope": false,
"immed": true,
"indent": 2,
"laxbreak": false,
"laxcomma": false,
"latedef": true,
"loopfunc": false,
"maxerr": 7,
"newcap": true,
"node": true,
"nonew": true,
"plusplus": true,
"regexdash": false,
"shadow": false,
"strict": false,
"sub": false,
"supernew": false,
"trailing": true,
"undef": true,
"unused": true,
"white": true,
"globals": {
"Promise": true,
"Swagger": true,
"Error": true,
"require": true,
"global": true,
"console": true,
"module": true,
"process": true,
"chrome": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment