From 4b6e4e8712319553bb7f8f83bee8468d68804b45 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Tue, 17 Oct 2023 13:04:04 +0200 Subject: [PATCH] feat: Added markdownlint to pre-commit hooks --- .pre-commit-config.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e6372d9..c924c89 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -27,4 +27,8 @@ repos: hooks: - id: conventional-pre-commit stages: [commit-msg] +- repo: https://github.com/igorshubovych/markdownlint-cli + rev: v0.37.0 + hooks: + - id: markdownlint ...