From 77cf2f27413295a94833039a67f564760ffffad1 Mon Sep 17 00:00:00 2001 From: Bill Little Date: Mon, 20 Nov 2023 23:15:17 +0000 Subject: [PATCH] configure ruff linter to show fixes --- .pre-commit-config.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9b340333..07ac5468 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,9 +36,10 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit rev: "v0.1.6" hooks: + # Linter - id: ruff types: [file, python] - args: [--fix] + args: [--fix, --show-fixes] - repo: https://github.com/codespell-project/codespell rev: "v2.2.6"