From d1d88035861bd6a2c0d27d05c9032b3438ffac13 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Sun, 24 Jan 2021 15:32:23 -0500 Subject: [PATCH] lint: Increase max-module-lines to 3000 (#805) We have these linting issues because base_plotting.py is too long: ``` pygmt/base_plotting.py:1:0: C0302: Too many lines in module (2047/2000) (too-many-lines) ``` The problem will be fixed in #685, but it may take some time. This PR increases the max-module-lines to 3000 to temporarily disable the warning. --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 3cb8c891dfaa..766bdd46b8b3 100644 --- a/.pylintrc +++ b/.pylintrc @@ -293,7 +293,7 @@ indent-string=' ' max-line-length=100 # Maximum number of lines in a module. -max-module-lines=2000 +max-module-lines=3000 # List of optional constructs for which whitespace checking is disabled. `dict- # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.