@kachkaev/markdownlint-config
v1.0.0
Published
Compatible with [markdownlint-cli](https://www.npmjs.com/package/markdownlint-cli) v0.30+. To be used together with [`@kachkaev/prettier-config`](https://www.npmjs.com/package/@kachkaev/prettier-config). See `main.json` for rule details.
Readme
@kachkaev → markdownlint config
Compatible with markdownlint-cli v0.30+.
To be used together with @kachkaev/prettier-config.
See main.json for rule details.
Adding to project
Install the package:
npm install -D @kachkaev/markdownlint-config ## or yarn add -D @kachkaev/markdownlint-configCreate
.markdownlint.jsonwith the following contents:{ "extends": "@kachkaev/markdownlint-config" }Create
.markdownlintignore. For example,########################### ## Specific to Markdownlint ########################### ## Ignore all files (but still allow sub-folder scanning) * !*/ ## Allow certain file types !*.md !*.mdx ######################## ## Same as in .gitignore ######################## # (paste lines from .gitignore here)Optionally, configure package scripts and a pre-commit hook to make sure that all project files are always formatted. See example in
njt→package.json.
