diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-19 16:49:40 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-19 16:49:40 +0200 |
commit | dc974ed38c5ed360829fbb573ddbdb797889c7fd (patch) | |
tree | 79d9127d22865dd1643a82cdf2fe29f771937301 | |
parent | e9c34911c55091e8149eb9ce2727e557cc711836 (diff) | |
download | markdown-rs-dc974ed38c5ed360829fbb573ddbdb797889c7fd.tar.gz markdown-rs-dc974ed38c5ed360829fbb573ddbdb797889c7fd.tar.bz2 markdown-rs-dc974ed38c5ed360829fbb573ddbdb797889c7fd.zip |
Refactor to clean some scripts in readme
-rw-r--r-- | readme.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -258,11 +258,11 @@ The following scripts are useful when working on this project: ``` - format: ```sh - cargo fmt --all + cargo fmt ``` - lint: ```sh - cargo fmt --all --check && cargo clippy -- -D clippy::pedantic -D clippy::cargo -A clippy::doc_link_with_quotes + cargo fmt --check && cargo clippy -- -D clippy::pedantic -D clippy::cargo -A clippy::doc_link_with_quotes ``` - test: ```sh |