Fix pylintrc section order and option placements (#15120)

This commit is contained in:
Ville Skyttä 2018-06-25 19:55:03 +03:00 committed by Paulus Schoutsen
parent ae51dc08bf
commit dbae410cf4

View File

@ -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