added a few more checks using pre-commit

This commit is contained in:
Erik Grobecker 2024-12-21 12:30:26 +01:00
parent ebd3ec3048
commit 4f7577036b
Signed by: Erik
GPG key ID: 80D020D0ABBD3FB2
2 changed files with 10 additions and 0 deletions

View file

@ -3,3 +3,12 @@ repos:
rev: v0.13.0
hooks:
- id: markdownlint_docker
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: detect-private-key
- id: end-of-file-fixer
- repo: https://github.com/crate-ci/typos
rev: v1.28.4
hooks:
- id: typos

View file

@ -3,5 +3,6 @@
pkgs.mkShell {
packages = with pkgs; [
pre-commit
typos
];
}