From ad458567b59e0ad53d2097cf4708bb4af0bac6b9 Mon Sep 17 00:00:00 2001 From: Konstantin Schaper Date: Thu, 22 Apr 2021 10:04:09 +0200 Subject: [PATCH] restrict markdown linting to docs --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fdfdc39a4e..d5190353dd 100644 --- a/package.json +++ b/package.json @@ -51,6 +51,6 @@ }, "lint-staged": { "*.{js,jsx,ts,tsx}": "eslint", - "*.md": "remark --frail --" + "./docs/**/*.md": "remark --frail --" } }