increase allowed line length before emitting a warning

We have some long urls for release notes, so increase the line length to
200 characters to warn less often.

Change-Id: I1edaccad3a30459855e592d3e5e9d1e64d39af7d
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2016-08-31 13:34:54 -04:00
parent ee7484ec73
commit d6e8aa0b9f
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
extends: default
rules:
# 100 chars should be enough, but don't fail if a line is longer
# 200 chars should be enough, but don't fail if a line is longer
line-length:
max: 100
max: 200
level: warning
allow-non-breakable-words: true