Raise line limit to 4000 for miniedit.py (see note)

Future versions of pylint will allow this to be disabled
in the file itself, so we can drop the limit back to
1500 or something more reasonable!!
This commit is contained in:
Bob Lantz
2014-12-04 09:26:11 -08:00
parent 03461ce908
commit e341526f46
+2 -1
View File
@@ -267,7 +267,8 @@ int-import-graph=
max-line-length=80
# Maximum number of lines in a module
max-module-lines=1500
# XXX 1500 -> 4000 for miniedit.py
max-module-lines=4000
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
# tab).