21 lines
536 B
INI
21 lines
536 B
INI
[BASIC]
|
|
good-names=
|
|
e, # (exception) as e
|
|
f, # (file) as f
|
|
k, # for k, v in
|
|
v, # for k, v in
|
|
dt, # datetime
|
|
|
|
[MASTER]
|
|
disable=
|
|
C0103, # invalid-name
|
|
C0114, # missing-module-docstring
|
|
C0115, # missing-class-docstring
|
|
C0116, # missing-function-docstring
|
|
W0703, # broad-except
|
|
W0707, # raise-missing-from
|
|
R0801, # duplicate-code
|
|
R0901, # too-many-ancestors
|
|
R0902, # too-many-instance-attributes
|
|
R0903, # too-few-public-methods
|
|
E1136, # unsubscriptable-object (false positive with python 3.9)
|