mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-21 03:37:15 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
* Bump pylint from 2.13.9 to 2.14.3 Bumps [pylint](https://github.com/PyCQA/pylint) from 2.13.9 to 2.14.3. - [Release notes](https://github.com/PyCQA/pylint/releases) - [Commits](https://github.com/PyCQA/pylint/compare/v2.13.9...v2.14.3) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Remove non-existent or optional checkers - `abstract-class-little-used` was removed in pylint [1.4.3](https://pylint.pycqa.org/en/latest/whatsnew/1/1.4.html#what-s-new-in-pylint-1-4-3) - `no-self-use` became optional in pylint [2.14](https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/summary.html#removed-checkers) - `redefined-variable-type` doesn't exist. It's actually [`multiple_types`](https://pylint.pycqa.org/en/latest/user_guide/checkers/extensions.html#pylint-extensions-redefined-variable-type) and it's optional. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mike Degatano <michael.degatano@gmail.com>
46 lines
1.0 KiB
INI
46 lines
1.0 KiB
INI
[MASTER]
|
|
reports=no
|
|
jobs=2
|
|
|
|
good-names=id,i,j,k,ex,Run,_,fp,T,os
|
|
|
|
extension-pkg-whitelist=
|
|
ciso8601
|
|
|
|
# Reasons disabled:
|
|
# format - handled by black
|
|
# locally-disabled - it spams too much
|
|
# duplicate-code - unavoidable
|
|
# cyclic-import - doesn't test if both import on load
|
|
# abstract-class-not-used - is flaky, should not show up but does
|
|
# unused-argument - generic callbacks and setup methods create a lot of warnings
|
|
# too-many-* - are not enforced for the sake of readability
|
|
# too-few-* - same as too-many-*
|
|
# abstract-method - with intro of async there are always methods missing
|
|
disable=
|
|
format,
|
|
abstract-method,
|
|
cyclic-import,
|
|
duplicate-code,
|
|
locally-disabled,
|
|
no-else-return,
|
|
not-context-manager,
|
|
too-few-public-methods,
|
|
too-many-arguments,
|
|
too-many-branches,
|
|
too-many-instance-attributes,
|
|
too-many-lines,
|
|
too-many-locals,
|
|
too-many-public-methods,
|
|
too-many-return-statements,
|
|
too-many-statements,
|
|
unused-argument,
|
|
consider-using-with
|
|
|
|
[EXCEPTIONS]
|
|
overgeneral-exceptions=Exception
|
|
|
|
|
|
[TYPECHECK]
|
|
ignored-modules = distutils
|