From 9c672c6b20f0eee1133f572468f1bbe8ab724c4d Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sat, 27 Jul 2013 21:56:44 -0700 Subject: [PATCH] get jshint close to passing by updating .jshintrc settings I don't agree with these personally, but they jive with BS/@fat's JS code style. The remaining jshint complaints are things that really actually should get fixed. --- js/.jshintrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/.jshintrc b/js/.jshintrc index 70e6c57923..94c520d5cf 100644 --- a/js/.jshintrc +++ b/js/.jshintrc @@ -3,9 +3,11 @@ "laxcomma" : true, "laxbreak" : true, "browser" : true, + "eqeqeq" : false, "eqnull" : true, "debug" : true, "devel" : true, + "curly" : false, "boss" : true, "expr" : true, "asi" : true