Merge pull request #664 from silvenon/patch-1

Ignore URLs in max-len
This commit is contained in:
Josh Perez
2016-01-06 17:03:58 -08:00

View File

@@ -37,7 +37,7 @@ module.exports = {
// specify the maximum length of a line in your program
// https://github.com/eslint/eslint/blob/master/docs/rules/max-len.md
'max-len': [2, 100, 2, {
'ignoreUrls': false,
'ignoreUrls': true,
'ignoreComments': false
}],
// specify the maximum depth callbacks can be nested