The longest Python files we still have are around 4200 lines long. In order to prevent future growth, limit the maximum file length (checked by pylint) to 4500 lines.
Signed-off-by: Thomas Thrainer <[email protected]> --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index a643211..b47abcd 100644 --- a/pylintrc +++ b/pylintrc @@ -73,7 +73,7 @@ int-import-graph = [FORMAT] max-line-length = 80 -max-module-lines = 10000 +max-module-lines = 4500 indent-string = " " [MISCELLANEOUS] -- 1.8.2.1
