From 9697aa9c74212cbc55a96dbfaafd03e35caf5c18 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 5 Dec 2023 14:25:10 +1000 Subject: [PATCH] pre-commit: autoupdate and add two more useful checkers We don't have symlinks but let's check for them anyway. And check for merge conflict leftoers too. --- .pre-commit-config.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a7165d3..7db1b72 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,18 +1,20 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v2.3.0 + rev: v4.5.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace + - id: check-merge-conflict + - id: check-symlinks - id: no-commit-to-branch args: ['--branch', 'main'] - repo: https://github.com/psf/black - rev: 22.10.0 + rev: 23.11.0 hooks: - id: black args: ['--check', '--diff', '.', 'proto/ei-scanner'] - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: v0.0.254 + rev: v0.1.7 hooks: - id: ruff args: ['--ignore=E741,E501', '.', 'proto/ei-scanner']