Skip to content

Commit

Permalink
Merge pull request #664 from silvenon/patch-1
Browse files Browse the repository at this point in the history
Ignore URLs in max-len
  • Loading branch information
goatslacker committed Jan 7, 2016
2 parents c4c724c + 8c70a8b commit e171f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config-airbnb/rules/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e171f8a

Please sign in to comment.