From 58de07f7e750ef2d634f436915d6296cfb34b8c9 Mon Sep 17 00:00:00 2001 From: Daniel Roschka Date: Thu, 27 Jul 2017 10:12:51 +0200 Subject: [PATCH] Add support to run markdownlint with pre-commit --- .pre-commit-hooks.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .pre-commit-hooks.yaml diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml new file mode 100644 index 00000000..a35e69e5 --- /dev/null +++ b/.pre-commit-hooks.yaml @@ -0,0 +1,7 @@ +- id: markdownlint + name: markdownlint + description: "Check the style of Markdown/Commonmark files" + entry: markdownlint + language: node + types: [markdown] + minimum_pre_commit_version: 0.15.0