From 72f0f05d2f9114637e9008396c7f37dc7501ad39 Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Wed, 19 Jun 2013 17:35:19 -0400 Subject: [PATCH] JSHint: disable unused variable check This is nice but until jshint/jshint#1146 is fixed there's no way to selectively disable W098 for unused function arguments which we wish to include for documentary purposes. With this change there are only three remaining warnings, all of which are actionable. --- .jshintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index ef54d227..2c3f7d32 100644 --- a/.jshintrc +++ b/.jshintrc @@ -6,7 +6,7 @@ "noarg": true, "trailing": true, "undef": true, - "unused": true, + "unused": false, "globals": { "OpenSeadragon": true