pylint: Disable too-many-lines.

This commit is contained in:
Florian Bruhin 2014-08-05 21:09:55 +02:00
parent 263ee37685
commit 3c5c0fcabe
2 changed files with 2 additions and 3 deletions

View File

@ -22,7 +22,8 @@ disable=no-self-use,
bad-continuation,
too-many-instance-attributes,
unnecessary-lambda,
blacklisted-name
blacklisted-name,
too-many-lines
[BASIC]
module-rgx=(__)?[a-z][a-z0-9_]*(__)?$

View File

@ -1,6 +1,4 @@
# pylint: disable=too-many-lines
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
# Note the "disable=too-many-lines" needs to be in the first line to work.
# Copyright 2014 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#