Update pylint to 4.0.0 + astroid to 4.0.1 (#154311)

This commit is contained in:
Marc Mueller
2025-10-12 18:46:04 +02:00
committed by GitHub
parent 3c1496d2bb
commit bf4f8b48a3
2 changed files with 4 additions and 2 deletions

View File

@@ -161,6 +161,7 @@ class-const-naming-style = "any"
# possibly-used-before-assignment - too many errors / not necessarily issues
# ---
# Pylint CodeStyle plugin
# consider-math-not-float
# consider-using-namedtuple-or-dataclass - too opinionated
# consider-using-assignment-expr - decision to use := better left to devs
disable = [
@@ -181,6 +182,7 @@ disable = [
"too-many-boolean-expressions",
"too-many-positional-arguments",
"wrong-import-order",
"consider-math-not-float",
"consider-using-namedtuple-or-dataclass",
"consider-using-assignment-expr",
"possibly-used-before-assignment",