Make generated parsers use strict mode
* Issue #324 * JSHint complains about two possible strict violations. But are valid uses of `this`, so we suppress the warnings.redux
parent
7285ccfd4e
commit
45e39c3ac8
@ -1,17 +1,18 @@
|
||||
{
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"evil": true,
|
||||
"forin": true,
|
||||
"freeze": true,
|
||||
"immed": true,
|
||||
"latedef": "nofunc",
|
||||
"laxbreak": true,
|
||||
"loopfunc": true,
|
||||
"newcap": false,
|
||||
"noarg": true,
|
||||
"noempty": true,
|
||||
"nonew": true,
|
||||
"trailing": true,
|
||||
"-W082": false
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"evil": true,
|
||||
"forin": true,
|
||||
"freeze": true,
|
||||
"immed": true,
|
||||
"latedef": "nofunc",
|
||||
"laxbreak": true,
|
||||
"loopfunc": true,
|
||||
"newcap": false,
|
||||
"noarg": true,
|
||||
"noempty": true,
|
||||
"nonew": true,
|
||||
"trailing": true,
|
||||
"validthis": true,
|
||||
"-W082": false
|
||||
}
|
||||
|
Loading…
Reference in New Issue