From 01b32779b9dbc31d559e5177824ef0ded285d5d7 Mon Sep 17 00:00:00 2001 From: soulgalore Date: Fri, 26 Sep 2014 23:13:09 +0200 Subject: [PATCH] ignore definition order for now --- .jshintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index 2952f1aa3..ca8c5d312 100644 --- a/.jshintrc +++ b/.jshintrc @@ -13,7 +13,7 @@ "forin" : true, // true: Require filtering for..in loops with obj.hasOwnProperty() "immed" : true, // true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());` "indent" : 4, // {int} Number of spaces to use for indentation - "latedef" : true, // true: Require variables/functions to be defined before being used + "latedef" : false, // true: Require variables/functions to be defined before being used "newcap" : true, // true: Require capitalization of all constructor functions e.g. `new F()` "noarg" : true, // true: Prohibit use of `arguments.caller` and `arguments.callee` "noempty" : true, // true: Prohibit use of empty blocks