summaryrefslogtreecommitdiff
path: root/examples
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
commitad7b0027ce59c7091a3dc0c45c184c265e825521 (patch)
tree329254262587f366a75ccc7e4bad825a45bf96ec /examples
parentba4599a918a35414061021a46dc0eb0e0dd59cc7 (diff)
downloadpylint-ad7b0027ce59c7091a3dc0c45c184c265e825521.tar.gz
Extend the line length check.
Diffstat (limited to 'examples')
-rw-r--r--examples/pylintrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index 5284fab..d560f9e 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]