diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9d2b7ed..a4fa11f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v4.6.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -10,7 +10,7 @@ repos: - id: fix-encoding-pragma - repo: https://github.com/commitizen-tools/commitizen - rev: v3.20.0 + rev: v3.24.0 hooks: - id: commitizen stages: @@ -23,4 +23,13 @@ repos: stages: - commit-msg + - repo: local + hooks: + - id: markdownlint + name: markdownlint-cli2 + description: Run markdownlint-cli2 on your Markdown files using the docker image + language: docker_image + types: [markdown] + entry: davidanson/markdownlint-cli2-rules:latest + ...