From afa228fd91c0bc481716f53352073916595fa8f4 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 17 Sep 2013 15:49:07 -0400 Subject: [PATCH] jshint: temporarily setting unused flag to false, low priority right now compared to the rest of our issues --- .jshintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index 1981c254c5..f5b67ad0bc 100644 --- a/.jshintrc +++ b/.jshintrc @@ -24,7 +24,7 @@ // "single" : require single quotes // "double" : require double quotes "undef" : true, // true: Require all non-global variables to be declared (prevents global leaks) - "unused" : true, // true: Require all defined variables be used + "unused" : false, // true: Require all defined variables be used TODO: Set this to true, update codebase. "strict" : true, // true: Requires all functions run in ES5 Strict Mode "trailing" : false, // true: Prohibit trailing whitespaces "maxparams" : false, // {int} Max number of formal params allowed per function