We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcbfb23 commit 6c4aba5Copy full SHA for 6c4aba5
2 files changed
.github/workflows/ci.yml
@@ -45,4 +45,4 @@ jobs:
45
steps:
46
- uses: actions/checkout@v2
47
- uses: dtolnay/rust-toolchain@clippy
48
- - run: cargo clippy -- -Dclippy::all -Dclippy::pedantic
+ - run: cargo clippy --tests -- -Dclippy::all -Dclippy::pedantic
tests/test.rs
@@ -1,4 +1,13 @@
1
-#![cfg_attr(feature = "cargo-clippy", allow(blacklisted_name))]
+#![cfg_attr(
2
+ feature = "cargo-clippy",
3
+ allow(
4
+ blacklisted_name,
5
+ let_underscore_drop,
6
+ shadow_unrelated,
7
+ unseparated_literal_suffix,
8
+ used_underscore_binding
9
+ )
10
+)]
11
12
use std::borrow::Cow;
13
use std::collections::BTreeSet;
0 commit comments