markdown-link-check icon indicating copy to clipboard operation
markdown-link-check copied to clipboard

Support yaml config file

Open chenrui333 opened this issue 3 years ago • 4 comments

I think it would be nice to support YAML config instead of JSON config

chenrui333 avatar Apr 23 '22 16:04 chenrui333

We do this in our package.json as a workaround so we can use YAML:

  "scripts": {
    "lint:links-yaml": "js-yaml -c .markdown-link-check.yml > .markdown-link-check.json",
    "lint:links": "yarn lint:links-yaml && markdown-link-check --quiet -c .markdown-link-check.json docs/**/*.md",
  },

But agreed it'd be nice to just have it natively ;)

nejch avatar May 05 '22 08:05 nejch