Wikia .jshintrc
{ | |
// Wikia .jshintrc | |
// Enforcing | |
"bitwise": true, | |
"camelcase": true, | |
"curly": true, | |
"eqeqeq": true, | |
"immed": true, | |
"latedef": true, | |
"newcap": true, | |
"noarg": true, | |
"noempty": true, | |
"nonew": true, | |
"plusplus": false, | |
"quotmark": "single", | |
"undef": true, | |
"unused": true, | |
"strict": true, | |
"trailing": true, | |
"maxparams": 4, | |
"maxdepth": 3, | |
"maxlen:" 120, | |
// Relaxing | |
"asi": false, | |
"boss": false, | |
"debug": false, | |
"eqnull": 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, | |
"proto": false, | |
"scripturl": false, | |
"smarttabs": false, | |
"shadow": false, | |
"sub": false, | |
"supernew": false, | |
"validthis": false, | |
// Environments | |
"browser": true, | |
"devel": false, | |
"jquery": true, | |
"node": true, | |
"nonstandard": true, | |
"globals": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment