summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorNick Drozd <nicholasdrozd@gmail.com>2018-01-02 19:10:48 -0600
committerClaudiu Popa <pcmanticore@gmail.com>2018-01-04 08:11:09 +0100
commitaee59b9d8577f2eb60d92accb6b5516eac993e38 (patch)
treefa6127e47183b2bc2488884d74d308ae5bace8dd /pylintrc
parent5fdf5e45c5bb9965449200566749c2bd542a9896 (diff)
downloadpylint-git-aee59b9d8577f2eb60d92accb6b5516eac993e38.tar.gz
Set max-module-lines to 2000
The greatest number of lines in a module at present is 1829 (checkers.base). 2000 seems like a reasonable cap.
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc3
1 files changed, 1 insertions, 2 deletions
diff --git a/pylintrc b/pylintrc
index dee1e15d2..54cadfaeb 100644
--- a/pylintrc
+++ b/pylintrc
@@ -63,7 +63,6 @@ disable=
no-member,
redefined-builtin,
protected-access,
- too-many-lines,
too-many-locals,
too-many-branches,
too-many-arguments,
@@ -161,7 +160,7 @@ single-line-if-stmt=no
no-space-check=trailing-comma,dict-separator
# Maximum number of lines in a module
-max-module-lines=1000
+max-module-lines=2000
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
# tab).