From 0bff06260ec59f4ac4bd975475d2cc6cd0229166 Mon Sep 17 00:00:00 2001 From: Andreas Lind Date: Sun, 26 Jul 2020 16:07:38 +0200 Subject: [PATCH] Also check .md files with prettier on CI --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index abd0c285..e214d779 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "node": ">=10.0.0" }, "scripts": { - "lint": "eslint . && prettier --check '**/*.js'", + "lint": "eslint . && prettier --check '**/*.{js,md}'", "test": "mocha && npm run lint", "travis": "npm run coverage && npm run lint", "coverage": "nyc --reporter=lcov --reporter=text -- mocha",