Last active
August 7, 2023 15:26
-
-
Save jsta/610e36120cfe78e52e8e524936eb93fb to your computer and use it in GitHub Desktop.
A pylint default file
This file contains 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
[BASIC] | |
# mark pdb commands as bad-names | |
bad-names=a, | |
alias, | |
args, | |
b, | |
break, | |
bt, | |
w, | |
c, | |
cl, | |
clear, | |
commands, | |
condition, | |
cont, | |
continue, | |
d, | |
debug, | |
disable, | |
display, | |
down, | |
enable, | |
EOF, | |
exit, | |
q, | |
h, | |
help, | |
ignore, | |
interact, | |
j, | |
jump, | |
l, | |
list, | |
ll, | |
longlist, | |
n, | |
next, | |
p, | |
pp, | |
quit, | |
r, | |
restart, | |
return, | |
retval, | |
run, | |
rv, | |
s, | |
source, | |
step, | |
tbreak, | |
u, | |
unalias, | |
undisplay, | |
unt, | |
until, | |
up, | |
w, | |
whatis, | |
where | |
[MESSAGES CONTROL] | |
disable=C0103, | |
W0102, | |
R1721, | |
C0301, | |
E1101, | |
W0719, | |
W3101, | |
C0413, | |
W0702, | |
W1514, | |
C0411, | |
W0106 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment