From 0c6b66cca1756f6eb854601ac2172a3e7a301544 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:04:37 +0200 Subject: [PATCH] ci: pre-commit autoupdate (#833) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.5 → v0.6.7](https://github.com/astral-sh/ruff-pre-commit/compare/v0.6.5...v0.6.7) - [github.com/pycqa/pylint: v3.2.7 → v3.3.0](https://github.com/pycqa/pylint/compare/v3.2.7...v3.3.0) * ci: Ignore pylint new R0917 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: gmuloc --- .pre-commit-config.yaml | 4 ++-- pyproject.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9944f5bfd..ec89d26e5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -43,7 +43,7 @@ repos: - '' - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.5 + rev: v0.6.7 hooks: - id: ruff name: Run Ruff linter @@ -52,7 +52,7 @@ repos: name: Run Ruff formatter - repo: https://github.com/pycqa/pylint - rev: "v3.2.7" + rev: "v3.3.0" hooks: - id: pylint name: Check code style with pylint diff --git a/pyproject.toml b/pyproject.toml index b9dfdad8c..d874b4edb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -450,6 +450,7 @@ disable = [ # Any rule listed here can be disabled: https://github.com/astral-sh "keyword-arg-before-vararg", "protected-access", "too-many-arguments", + "too-many-positional-arguments", # New in pylint 3.3.0 "wrong-import-position", "pointless-statement", "broad-exception-caught",