From 9bfbdeb5a6a317644aebe95478b8ca495bad07da Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Thu, 5 Dec 2024 10:33:53 +0100 Subject: [PATCH] Ignore clippy::needless-lifetimes The lifetimes serve as documentation. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7a5126d2..43c5463a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -114,4 +114,4 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - name: Run Clippy - run: cargo clippy --all-targets --all-features -- -D warnings + run: cargo clippy --all-targets --all-features -- --allow clippy::needless-lifetimes -D warnings