mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +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]
|
||||
reports=no
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
# Reasons disabled:
|
||||
# locally-disabled - it spams too much
|
||||
# duplicate-code - unavoidable
|
||||
@ -14,9 +12,6 @@ reports=no
|
||||
# too-few-* - same as too-many-*
|
||||
# abstract-method - with intro of async there are always methods missing
|
||||
# inconsistent-return-statements - doesn't handle raise
|
||||
|
||||
generated-members=botocore.errorfactory
|
||||
|
||||
disable=
|
||||
abstract-class-little-used,
|
||||
abstract-class-not-used,
|
||||
@ -39,9 +34,13 @@ disable=
|
||||
too-many-statements,
|
||||
unused-argument
|
||||
|
||||
[REPORTS]
|
||||
reports=no
|
||||
|
||||
[TYPECHECK]
|
||||
# For attrs
|
||||
ignored-classes=_CountingAttr
|
||||
generated-members=botocore.errorfactory
|
||||
|
||||
[EXCEPTIONS]
|
||||
overgeneral-exceptions=Exception,HomeAssistantError
|
||||
|
||||
# For attrs
|
||||
[typecheck]
|
||||
ignored-classes=_CountingAttr
|
||||
|
Loading…
x
Reference in New Issue
Block a user