Created
September 19, 2014 08:29
-
-
Save RickyCook/b4fa8bf2f8289871c9b6 to your computer and use it in GitHub Desktop.
Default Pylint RC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[MESSAGES CONTROL] | |
disable=bad-continuation, | |
fixme, | |
locally-disabled, | |
relative-import, | |
star-args, | |
wildcard-import, | |
[REPORTS] | |
output-format=colorized | |
reports=yes | |
[BASIC] | |
bad-functions= | |
include-naming-hint=yes | |
[FORMAT] | |
max-line-length=80 | |
[DESIGN] | |
max-args=8 | |
max-locals=20 | |
max-returns=10 | |
max-branches=12 | |
[IMPORTS] | |
# Modules marked 'r3' were removed in Python3, so aren't needed | |
# from then on | |
deprecated-modules=Bastion, # r3 | |
commands, # r3 | |
compiler, # r3 | |
htmllib, # r3 | |
imageop, # r3 | |
md5, | |
mimetools, # r3 | |
multifile, | |
new, | |
popen2, | |
posixfile, | |
rexec, # r3 | |
rfc822, | |
sha, | |
statvfs, # r3 | |
optparse, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment