Update pylint to 3.2.2 (#117770)

This commit is contained in:
Marc Mueller 2024-05-20 09:59:22 +02:00 committed by GitHub
parent 149120b749
commit e48cf6fad2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -152,6 +152,7 @@ class-const-naming-style = "any"
# too-many-ancestors - it's too strict.
# wrong-import-order - isort guards this
# consider-using-f-string - str.format sometimes more readable
# possibly-used-before-assignment - too many errors / not necessarily issues
# ---
# Pylint CodeStyle plugin
# consider-using-namedtuple-or-dataclass - too opinionated
@ -176,6 +177,7 @@ disable = [
"consider-using-f-string",
"consider-using-namedtuple-or-dataclass",
"consider-using-assignment-expr",
"possibly-used-before-assignment",
# Handled by ruff
# Ref: <https://github.com/astral-sh/ruff/issues/970>

View file

@ -7,14 +7,14 @@
-c homeassistant/package_constraints.txt
-r requirements_test_pre_commit.txt
astroid==3.1.0
astroid==3.2.2
coverage==7.5.0
freezegun==1.5.0
mock-open==1.4.0
mypy-dev==1.11.0a2
pre-commit==3.7.1
pydantic==1.10.15
pylint==3.1.1
pylint==3.2.2
pylint-per-file-ignores==1.3.2
pipdeptree==2.19.0
pytest-asyncio==0.23.6