diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d29fcf4..0c4ddf0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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 diff --git a/shell.nix b/shell.nix index 81224b6..0c986d4 100644 --- a/shell.nix +++ b/shell.nix @@ -3,5 +3,6 @@ pkgs.mkShell { packages = with pkgs; [ pre-commit + typos ]; }