Files
esphome_kamstrup/pylintrc
T

31 lines
594 B
INI
Raw Normal View History

2018-04-10 17:17:46 +02:00
[MASTER]
reports=no
2018-12-18 19:31:43 +01:00
ignore=api_pb2.py
2018-04-10 17:17:46 +02:00
disable=
missing-docstring,
fixme,
unused-argument,
global-statement,
too-few-public-methods,
2019-04-22 21:56:30 +02:00
too-many-lines,
2018-04-10 17:17:46 +02:00
too-many-locals,
too-many-ancestors,
too-many-branches,
too-many-statements,
too-many-arguments,
too-many-return-statements,
2019-02-10 16:57:34 +01:00
too-many-instance-attributes,
2018-04-10 17:17:46 +02:00
duplicate-code,
2018-05-20 12:41:52 +02:00
invalid-name,
cyclic-import,
2018-06-02 22:22:20 +02:00
redefined-builtin,
2018-08-13 19:11:33 +02:00
undefined-loop-variable,
2019-01-02 14:11:11 +01:00
useless-object-inheritance,
stop-iteration-return,
2019-04-22 21:56:30 +02:00
no-self-use,
2019-12-04 17:13:34 +01:00
import-outside-toplevel,
# Broken
unsupported-membership-test,
unsubscriptable-object,