From cdb863c7cf208f44cb74316690c8dbcf79a83b58 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 18 Jan 2016 14:03:50 -0400 Subject: [PATCH] Set an explicit maxlen Hound CI uses it's default otherwise, which is too short. --- .jshintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.jshintrc b/.jshintrc index 582c1bb2..bce31b04 100644 --- a/.jshintrc +++ b/.jshintrc @@ -41,6 +41,7 @@ "undef" : true, // Require all non-global variables be declared before they are used. "strict" : true, // Require `use strict` pragma in every file. "trailing" : true, // Prohibit trailing whitespaces. + "maxlen" : 130, // Limit line length. // == Relaxing Options ================================================ //