mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 17:57:55 +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
|
# abstract-method - with intro of async there are always methods missing
|
||||||
# inconsistent-return-statements - doesn't handle raise
|
# inconsistent-return-statements - doesn't handle raise
|
||||||
# not-an-iterable - https://github.com/PyCQA/pylint/issues/2311
|
# not-an-iterable - https://github.com/PyCQA/pylint/issues/2311
|
||||||
|
# unnecessary-pass - readability for functions which only contain pass
|
||||||
disable=
|
disable=
|
||||||
abstract-class-little-used,
|
abstract-class-little-used,
|
||||||
abstract-method,
|
abstract-method,
|
||||||
@ -32,6 +33,7 @@ disable=
|
|||||||
too-many-public-methods,
|
too-many-public-methods,
|
||||||
too-many-return-statements,
|
too-many-return-statements,
|
||||||
too-many-statements,
|
too-many-statements,
|
||||||
|
unnecessary-pass,
|
||||||
unused-argument
|
unused-argument
|
||||||
|
|
||||||
[REPORTS]
|
[REPORTS]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user