Skip to content

Commit d1d8803

Browse files
authored
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.
1 parent 83d2fab commit d1d8803

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ indent-string=' '
293293
max-line-length=100
294294

295295
# Maximum number of lines in a module.
296-
max-module-lines=2000
296+
max-module-lines=3000
297297

298298
# List of optional constructs for which whitespace checking is disabled. `dict-
299299
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.

0 commit comments

Comments
 (0)