Ignore URLs in max-len

This commit is contained in:
Matija Marohnić
2016-01-07 01:11:00 +01:00
parent c4c724c0a3
commit 8c70a8bc6d

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