summaryrefslogtreecommitdiff
path: root/examples/pylintrc
diff options
context:
space:
mode:
authorTorsten Marek <tmarek@google.com>2013-06-17 19:57:05 +0200
committerTorsten Marek <tmarek@google.com>2013-06-17 19:57:05 +0200
commitb5f41f97aa0c66da62f6c1d6521f91c350a9ab4b (patch)
tree8708be8af7764809c32eb6e6c4786deb613e9918 /examples/pylintrc
parent3b19d873f3ed0ea8aee3a1e2692e86aa86b74e03 (diff)
downloadpylint-git-b5f41f97aa0c66da62f6c1d6521f91c350a9ab4b.tar.gz
Extend the line length check.
Diffstat (limited to 'examples/pylintrc')
-rw-r--r--examples/pylintrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index 5284fab53..d560f9e60 100644
--- a/examples/pylintrc
+++ b/examples/pylintrc
@@ -86,6 +86,8 @@ max-module-lines=1000
# tab).
indent-string=' '
+# Regexp for a line that is allowed to be longer than the limit.
+ignore-long-lines=^\s*(# )?<?https?://\S+>?$
[BASIC]