pegjs/.jshintrc
David Majda f3a83788aa Inline functions extracted just because of JSHint
Rather than extracting functions just because JSHint complained about
defining functions inside a loop, let's inline then and silence the
warning.
2014-04-27 13:31:49 +02:00

17 lines
288 B
Plaintext

{
"curly": true,
"eqeqeq": true,
"evil": true,
"forin": true,
"freeze": true,
"immed": true,
"latedef": "nofunc",
"laxbreak": true,
"loopfunc": true,
"noarg": true,
"noempty": true,
"nonew": true,
"trailing": true,
"-W082": false
}