tuxbot-bot/.pylintrc

23 lines
571 B
INI
Raw Permalink 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
C0415, # import-outside-toplevel
W0703, # broad-except
2021-03-31 16:08:41 +00:00
W0707, # raise-missing-from
2020-10-21 22:00:48 +00:00
R0801, # duplicate-code
2021-03-31 16:08:41 +00:00
R0901, # too-many-ancestors
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)