pegjs/.jshintrc
David Majda 46ac1bf171 Wrap initializer code in generated parsers into |{...}|
Initializer code is usually indented and this indentation is carried
over to generated code. This resulted in a piece of indented code in the
middle of the parser.

This commit wraps initializer code in |{...}|, which makes indentation
in generated parsers look a bit more natural.
2014-04-27 13:17:59 +02:00

16 lines
268 B
Plaintext

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