From a9304798125a7f77da6cd70c6092e4a4a32ecb64 Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Fri, 22 Nov 2024 09:34:02 +0100 Subject: [PATCH] Bump pre-commit hooks --- .pre-commit-config.yaml | 10 +++++----- .pylintrc | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f3daa41..f975db9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ exclude: tests/(data|__snapshots__|samples) repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -10,7 +10,7 @@ repos: - id: check-added-large-files - repo: https://github.com/PyCQA/pylint - rev: v3.2.7 + rev: v3.3.1 hooks: - id: pylint additional_dependencies: @@ -21,17 +21,17 @@ repos: - "tree-sitter-zeek==0.1.1" - repo: https://github.com/psf/black - rev: 24.8.0 + rev: 24.10.0 hooks: - id: black - repo: https://github.com/asottile/pyupgrade - rev: v3.17.0 + rev: v3.19.0 hooks: - id: pyupgrade args: ["--py37-plus"] - repo: https://github.com/igorshubovych/markdownlint-cli - rev: v0.41.0 + rev: v0.42.0 hooks: - id: markdownlint-fix diff --git a/.pylintrc b/.pylintrc index 1498408..533e7ff 100644 --- a/.pylintrc +++ b/.pylintrc @@ -8,4 +8,5 @@ disable= too-many-branches, too-many-instance-attributes, too-many-lines, + too-many-positional-arguments, too-many-statements,