diff options
author | Nick Drozd <nicholasdrozd@gmail.com> | 2018-01-02 19:10:48 -0600 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-01-04 08:11:09 +0100 |
commit | aee59b9d8577f2eb60d92accb6b5516eac993e38 (patch) | |
tree | fa6127e47183b2bc2488884d74d308ae5bace8dd /pylintrc | |
parent | 5fdf5e45c5bb9965449200566749c2bd542a9896 (diff) | |
download | pylint-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-- | pylintrc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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). |