mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 17:27:52 +00:00
Add unnecessary-pass for pylint-update (#18985)
This commit is contained in:
parent
d6a4e106a9
commit
ab7c52a9c4
2
pylintrc
2
pylintrc
@ -12,6 +12,7 @@
|
||||
# abstract-method - with intro of async there are always methods missing
|
||||
# inconsistent-return-statements - doesn't handle raise
|
||||
# not-an-iterable - https://github.com/PyCQA/pylint/issues/2311
|
||||
# unnecessary-pass - readability for functions which only contain pass
|
||||
disable=
|
||||
abstract-class-little-used,
|
||||
abstract-method,
|
||||
@ -32,6 +33,7 @@ disable=
|
||||
too-many-public-methods,
|
||||
too-many-return-statements,
|
||||
too-many-statements,
|
||||
unnecessary-pass,
|
||||
unused-argument
|
||||
|
||||
[REPORTS]
|
||||
|
Loading…
x
Reference in New Issue
Block a user