From dc221d74830dda31630444826e32239bbd65af8d Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Mon, 13 Apr 2026 19:09:43 -0400 Subject: [PATCH] ci(lint): allow clippy::doc-markdown --- .github/workflows/lint.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index de3ee41..4740195 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -69,7 +69,10 @@ jobs: - name: Install components run: rustup component add clippy rustfmt - - run: cargo clippy ${{ matrix.feature.flags }} -- -D warnings -D clippy::pedantic + - run: cargo clippy ${{ matrix.feature.flags }} -- + -D warnings + -D clippy::pedantic + -A clippy::doc-markdown - if: always() run: cargo fmt --check