Skip to content
Snippets Groups Projects
Commit e341526f authored by Bob Lantz's avatar Bob Lantz
Browse files

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!!
parent 03461ce9
No related branches found
No related tags found
No related merge requests found
......@@ -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).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment