mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 15:22:38 +00:00
Document that we use https://github.com/DavidAnson/markdownlint to lint Markdown
This commit is contained in:
parent
d9320277e1
commit
6c44ed2efd
1 changed files with 4 additions and 0 deletions
|
@ -62,3 +62,7 @@ Your git commits will then automatically be checked. If a check fails, an error
|
||||||
## Using Clippy
|
## 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`.
|
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.
|
||||||
|
|
Loading…
Reference in a new issue