From e2c330eb7b04dcce461a5e98d61bfdc9b347d0aa Mon Sep 17 00:00:00 2001 From: Florian Maurer <f.maurer@outlook.de> Date: Mon, 18 Nov 2024 21:55:27 +0100 Subject: [PATCH] update pre-commit config --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 631f59e..fe7fd6c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v5.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace @@ -10,7 +10,7 @@ repos: rev: v2.3.0 hooks: - id: codespell - stages: [commit] + stages: [pre-commit] additional_dependencies: - tomli @@ -18,12 +18,12 @@ repos: rev: v3.1.0 hooks: - id: prettier - stages: [commit] + stages: [pre-commit] exclude: tests\/test_.+\. - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.4.4 + rev: v0.7.4 hooks: # Run the linter. - id: ruff -- GitLab