tuxbot-bot/.pylintrc

20 lines
476 B
INI
Raw Normal View History

[BASIC]
good-names=
e, # (exception) as e
f, # (file) as f
2020-10-19 13:04:10 +00:00
k, # for k, v in
v, # for k, v in
2020-10-21 22:00:48 +00:00
dt, # datetime
[MASTER]
disable=
2020-11-09 00:18:55 +00:00
C0103, # invalid-name
C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring
W0703, # broad-except
2020-10-21 22:00:48 +00:00
R0801, # duplicate-code
R0902, # too-many-instance-attributes
R0903, # too-few-public-methods
2020-11-09 00:18:55 +00:00
E1136, # unsubscriptable-object (false positive with python 3.9)