From 0d3ce5a653fc2b8731ab853921788935c771aeae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 15 Apr 2013 16:25:49 +0200 Subject: [PATCH] Relax some js checking --- .jshintrc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.jshintrc b/.jshintrc index 1e6437042d..a22fcc4117 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,4 +1,7 @@ { + // Show more errors + "maxerr" : 200, + // Globals "jquery" : true, @@ -9,11 +12,11 @@ "latedef" : true, "noarg" : true, "noempty" : true, - "unused" : true, + "unused" : false, "trailing" : true, // Relaxing rules - "sub" : false, - "funcscope" : false, + "sub" : true, + "funcscope" : true, "laxbreak" : false }