Document that we use https://github.com/DavidAnson/markdownlint to lint Markdown

This commit is contained in:
Sylvestre Ledru 2023-03-04 18:31:53 +01:00
parent d9320277e1
commit 6c44ed2efd

View file

@ -62,3 +62,7 @@ Your git commits will then automatically be checked. If a check fails, an error
## Using Clippy
The `msrv` key in the clippy configuration file `clippy.toml` is used to disable lints pertaining to newer features by specifying the minimum supported Rust version (MSRV). However, this key is only supported on `nightly`. To invoke clippy without errors, use `cargo +nightly clippy`. In order to also check tests and non-default crate features, use `cargo +nightly clippy --all-targets --all-features`.
## Markdown linter
We use <https://github.com/DavidAnson/markdownlint> to lint the Markdown files.