Skip to content

Commit e171f8a

Browse files
committed
Merge pull request airbnb#664 from silvenon/patch-1
Ignore URLs in max-len
2 parents c4c724c + 8c70a8b commit e171f8a

File tree

1 file changed

+1
-1
lines changed
  • packages/eslint-config-airbnb/rules

1 file changed

+1
-1
lines changed

packages/eslint-config-airbnb/rules/style.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = {
3737
// specify the maximum length of a line in your program
3838
// https://github.com/eslint/eslint/blob/master/docs/rules/max-len.md
3939
'max-len': [2, 100, 2, {
40-
'ignoreUrls': false,
40+
'ignoreUrls': true,
4141
'ignoreComments': false
4242
}],
4343
// specify the maximum depth callbacks can be nested

0 commit comments

Comments
 (0)