ci(lint): allow clippy::doc-markdown

This commit is contained in:
2026-04-13 19:09:43 -04:00
parent 7d1996306c
commit eb8a51ec89

View File

@@ -69,7 +69,11 @@ jobs:
- name: Install components - name: Install components
run: rustup component add clippy rustfmt 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() - if: always()
run: cargo fmt --check run: cargo fmt --check