From d9ace6c6642146c0a73632446fa9ff60ee66f0bb Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Wed, 12 May 2021 14:47:27 +0200 Subject: [PATCH] chore: disable markdownlint for api.md (#7228) api.md is autogenerated anyhow, and this avoids the recent CI failures. Issue: #7227 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6bb8bb4aeb3..ef18dfb072f 100644 --- a/package.json +++ b/package.json @@ -24,8 +24,8 @@ "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", "eslint-fix": "eslint --ext js --ext ts --fix .", "commitlint": "commitlint --from=HEAD~1", - "markdownlint": "prettier --check **/README.md docs/api.md docs/troubleshooting.md", - "markdownlint-fix": "prettier --write **/README.md docs/api.md docs/troubleshooting.md", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", "doc": "node utils/doclint/cli.js", "clean-lib": "rimraf lib",