OpenSearch/.jshintrc

28 lines
497 B
Plaintext
Raw Normal View History

{
// for files at project root
"node": true,
// shared with .jshintrc files for browser and node
"unused": false,
"bitwise": false,
"eqnull": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"expr": true,
"latedef": "nofunc",
"noarg": true,
"noempty": true,
"undef": true,
"quotmark": "single",
"plusplus": false,
"boss": true,
"laxbreak": true,
"laxcomma": true,
"validthis": true,
"sub": true,
"-W084": true,
"scripturl": true,
"evil": true
}