From a2ee8d6181cfa8cd788bf21a69e75b9a5d33fc45 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Tue, 10 Sep 2013 16:36:07 +0300 Subject: [PATCH] feature(jshint) add expr: "if ExpressionStatement should be allowed as Programs" --- test/.jshintrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/.jshintrc b/test/.jshintrc index 071acb2f..0a6b47dd 100644 --- a/test/.jshintrc +++ b/test/.jshintrc @@ -14,5 +14,6 @@ "nonew" : true, "strict" : true, "undef" : true, - "evil" : true /* using for JSON-parsing if brawser old and crappy */ -} \ No newline at end of file + "evil" : true, /* using for JSON-parsing if brawser old and crappy */ + "expr" : true +}