diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 12:15:57 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 12:15:57 +0200 |
commit | bf889ff7f57a315525d5e2cb671a19eb7d6e429f (patch) | |
tree | 4de5160d84500b1f85c9321ed081f71e9312a3fb /.github | |
parent | ed72a2e16ece757941786f586bd2a80022892a74 (diff) | |
download | markdown-rs-bf889ff7f57a315525d5e2cb671a19eb7d6e429f.tar.gz markdown-rs-bf889ff7f57a315525d5e2cb671a19eb7d6e429f.tar.bz2 markdown-rs-bf889ff7f57a315525d5e2cb671a19eb7d6e429f.zip |
Refactor to allow wrong clippy rule
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9605d54..e400250 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: with: toolchain: stable components: rustfmt, clippy - - run: cargo clippy -- -W clippy::pedantic + - run: cargo clippy -- -W clippy::pedantic -A clippy::doc_link_with_quotes - run: cargo fmt --all -- --check - run: cargo test # - run: cargo install cargo-tarpaulin && cargo tarpaulin --out Xml |