mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 06:07:17 +00:00
Fix pylintrc section order and option placements (#15120)
This commit is contained in:
parent
ae51dc08bf
commit
dbae410cf4
19
pylintrc
19
pylintrc
@ -1,6 +1,4 @@
|
|||||||
[MASTER]
|
[MESSAGES CONTROL]
|
||||||
reports=no
|
|
||||||
|
|
||||||
# Reasons disabled:
|
# Reasons disabled:
|
||||||
# locally-disabled - it spams too much
|
# locally-disabled - it spams too much
|
||||||
# duplicate-code - unavoidable
|
# duplicate-code - unavoidable
|
||||||
@ -14,9 +12,6 @@ reports=no
|
|||||||
# too-few-* - same as too-many-*
|
# too-few-* - same as too-many-*
|
||||||
# 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
|
||||||
|
|
||||||
generated-members=botocore.errorfactory
|
|
||||||
|
|
||||||
disable=
|
disable=
|
||||||
abstract-class-little-used,
|
abstract-class-little-used,
|
||||||
abstract-class-not-used,
|
abstract-class-not-used,
|
||||||
@ -39,9 +34,13 @@ disable=
|
|||||||
too-many-statements,
|
too-many-statements,
|
||||||
unused-argument
|
unused-argument
|
||||||
|
|
||||||
|
[REPORTS]
|
||||||
|
reports=no
|
||||||
|
|
||||||
|
[TYPECHECK]
|
||||||
|
# For attrs
|
||||||
|
ignored-classes=_CountingAttr
|
||||||
|
generated-members=botocore.errorfactory
|
||||||
|
|
||||||
[EXCEPTIONS]
|
[EXCEPTIONS]
|
||||||
overgeneral-exceptions=Exception,HomeAssistantError
|
overgeneral-exceptions=Exception,HomeAssistantError
|
||||||
|
|
||||||
# For attrs
|
|
||||||
[typecheck]
|
|
||||||
ignored-classes=_CountingAttr
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user