Skip to content

Instantly share code, notes, and snippets.

@ikr
Created July 5, 2013 14:23
Show Gist options
  • Save ikr/5934873 to your computer and use it in GitHub Desktop.
Save ikr/5934873 to your computer and use it in GitHub Desktop.
Pure JSON version of my .jsonrc -- https://gist.github.com/ikr/5676468
{
"bitwise" : true,
"curly" : true,
"eqeqeq" : true,
"forin" : true,
"immed" : true,
"latedef" : true,
"newcap" : true,
"noarg" : true,
"noempty" : true,
"nonew" : true,
"plusplus" : true,
"regexp" : true,
"undef" : true,
"unused" : true,
"strict" : true,
"trailing" : true,
"asi" : false,
"boss" : false,
"debug" : false,
"eqnull" : false,
"es5" : false,
"esnext" : false,
"evil" : false,
"expr" : false,
"funcscope" : false,
"globalstrict" : false,
"iterator" : false,
"lastsemic" : false,
"laxbreak" : false,
"laxcomma" : false,
"loopfunc" : false,
"moz" : false,
"multistr" : false,
"onecase" : false,
"proto" : false,
"regexdash" : false,
"scripturl" : false,
"smarttabs" : false,
"shadow" : false,
"sub" : false,
"supernew" : false,
"validthis" : false,
"browser" : false,
"couch" : false,
"devel" : false,
"dojo" : false,
"jquery" : false,
"mootools" : false,
"node" : true,
"nonstandard" : false,
"prototypejs" : false,
"rhino" : false,
"wsh" : false,
"nomen" : true,
"onevar" : true,
"passfail" : false,
"white" : true,
"maxerr" : 100,
"predef" : [
"angular",
"it",
"describe",
"beforeEach"
],
"indent" : 4,
"camelcase" : true,
"quotmark" : "single",
"maxparams" : 5,
"maxdepth" : 5,
"maxstatements" : 20,
"maxcomplexity" : 10,
"maxlen" : 120
}
@ikr
Copy link
Author

ikr commented Jul 5, 2013

Original .jshintrc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment