.pre-commit-config.yaml: Also run cspell

That cuaght me a few times... I think it's reasonable to ask devs
to install cspell locally if they want to use the pre-commit hook.
This commit is contained in:
Nicolas Boichat 2025-03-25 13:54:35 +01:00
parent 2488e17aef
commit 4a959d4bdd

View file

@ -15,3 +15,9 @@ repos:
pass_filenames: false
types: [file, rust]
language: system
- id: cspell
name: Code spell checker (cspell)
description: Run cspell to check for spelling errors.
entry: cspell --
pass_filenames: true
language: system