From 48b7259f7c1b65488e1d7272eceaeb9b0e4eb883 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mirko=20M=C3=A4licke?= Date: Thu, 12 Oct 2023 11:10:31 +0200 Subject: [PATCH] write-changes flag and ignore words --- .pre-commit-config.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0610a72..24406c0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,7 +5,10 @@ repos: hooks: - id: codespell args: [ -# '--ignore-words-list', 'nd,alos,inout', + # Verly is a Name, coo references the SciPy coo sparse matrix + '--ignore-words-list', 'verly,coo', + '--write-changes', +# 'nd,alos,inout', # '--ignore-regex', '\bhist\b', '--' ]