20 lines
493 B
INI
20 lines
493 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
|
|
W0511, # fixme
|
|
W0703, # broad-except
|
|
R0801, # duplicate-code
|
|
R0902, # too-many-instance-attributes
|
|
R0903, # too-few-public-methods
|
|
E1136, # unsubscriptable-object (false positive with python 3.9)
|