Merge pull request #92 from resin-io/misc/jshint-maxlen

Set an explicit maxlen
This commit is contained in:
Juan Cruz Viotti 2016-01-18 14:48:49 -04:00
commit 139e9c29c5

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