From 4f0b4da26d19e628e0f77d14ebe795958903eae6 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Thu, 12 Jan 2023 21:40:16 +0100 Subject: [PATCH] clippy: fix spelling of lint derive_partial_eq_without_eq lint (#377) --- .github/workflows/ci-code-review-rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-code-review-rust.yml b/.github/workflows/ci-code-review-rust.yml index 9fcf30be1..a87505697 100644 --- a/.github/workflows/ci-code-review-rust.yml +++ b/.github/workflows/ci-code-review-rust.yml @@ -60,7 +60,7 @@ jobs: - name: Run clippy # The --allow args are due to clippy scanning anchor - run: cargo clippy --no-deps -- --deny=warnings --allow=clippy::style --allow=clippy::complexity --allow=clippy::manual-retain --allow=clippy::crate-in-macro-def --allow=clippy::result-large-err --allow=clippy::eq-partial-eq + run: cargo clippy --no-deps -- --deny=warnings --allow=clippy::style --allow=clippy::complexity --allow=clippy::manual-retain --allow=clippy::crate-in-macro-def --allow=clippy::result-large-err --allow=clippy::derive_partial_eq_without_eq test: name: Test