Set an explicit maxlen

Hound CI uses it's default otherwise, which is too short.
This commit is contained in:
Juan Cruz Viotti 2016-01-18 14:03:50 -04:00
parent 79ebe75472
commit cdb863c7cf

View File

@ -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 ================================================
//