From 64e406362a8bc7327b21c22f06e011f2ebb537f5 Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Mon, 25 Feb 2019 09:38:46 -0800 Subject: [PATCH] autoformat markdown with prettier; closes #3773 Signed-off-by: Christopher Hiller --- .lintstagedrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.lintstagedrc.json b/.lintstagedrc.json index 48a4bc4082..74973575e8 100644 --- a/.lintstagedrc.json +++ b/.lintstagedrc.json @@ -1,7 +1,7 @@ { "linters": { "(bin/*|*.js|**/*.js)": ["eslint --fix", "git add"], - "(*.{json,yml}|**/*.{json,yml})": ["prettier --write", "git add"] + "(*.{json,yml,md}|**/*.{json,yml,md})": ["prettier --write", "git add"] }, "ignore": ["docs/**/*.js", "test/**/*.fixture.js", "package*.json"] }