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,
|
"curly": true,
|
||||||
"eqeqeq": true,
|
"eqeqeq": true,
|
||||||
"evil": true,
|
"evil": true,
|
||||||
"forin": true,
|
"forin": true,
|
||||||
"freeze": true,
|
"freeze": true,
|
||||||
"immed": true,
|
"immed": true,
|
||||||
"latedef": "nofunc",
|
"latedef": "nofunc",
|
||||||
"laxbreak": true,
|
"laxbreak": true,
|
||||||
"loopfunc": true,
|
"loopfunc": true,
|
||||||
"newcap": false,
|
"newcap": false,
|
||||||
"noarg": true,
|
"noarg": true,
|
||||||
"noempty": true,
|
"noempty": true,
|
||||||
"nonew": true,
|
"nonew": true,
|
||||||
"trailing": true,
|
"trailing": true,
|
||||||
"-W082": false
|
"validthis": true,
|
||||||
|
"-W082": false
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue