diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-04 19:26:34 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-04 19:26:34 +1300 |
commit | c261ba04b0e8c1a0cc9c9be8a9fb7dfc6bf0d826 (patch) | |
tree | 82c1de02e70ba4d0c2c47e0ee34ff1d9df66a3db /web/.jshintrc | |
parent | c8bd2cc689744723bf8b59a2870341cd53b75b04 (diff) | |
download | trackermap-server-c261ba04b0e8c1a0cc9c9be8a9fb7dfc6bf0d826.tar.gz trackermap-server-c261ba04b0e8c1a0cc9c9be8a9fb7dfc6bf0d826.tar.bz2 trackermap-server-c261ba04b0e8c1a0cc9c9be8a9fb7dfc6bf0d826.zip |
Disable JSHint check for use strict
Diffstat (limited to 'web/.jshintrc')
-rw-r--r-- | web/.jshintrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/.jshintrc b/web/.jshintrc index d547bfeb0..0d2e29d52 100644 --- a/web/.jshintrc +++ b/web/.jshintrc @@ -25,7 +25,7 @@ // true : all variables, last function parameter // "vars" : all variables only // "strict" : all variables, all function parameters - "strict" : true, // true: Requires all functions run in ES5 Strict Mode + "strict" : false, // true: Requires all functions run in ES5 Strict Mode "maxparams" : false, // {int} Max number of formal params allowed per function "maxdepth" : false, // {int} Max depth of nested blocks (within functions) "maxstatements" : false, // {int} Max number statements per function |