File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ cargo fmt --check
24
24
for feature_set in " ${features[@]} " ; do
25
25
echo $feature_set
26
26
cargo test --locked --features=" $feature_set " --all-targets
27
- cargo clippy --locked --features=" $feature_set " --all-targets -- -D warnings
27
+ cargo clippy --locked --features=" $feature_set " --all-targets -- -D warnings -A clippy::empty-docs
28
28
done
29
29
30
30
for example in " ${examples[@]} " ; do
31
31
cargo test $example
32
- cargo clippy $example -- -D warnings
32
+ cargo clippy $example -- -D warnings -A clippy::empty-docs
33
33
done
Original file line number Diff line number Diff line change @@ -157,6 +157,7 @@ pub enum Product {
157
157
pub struct Info {
158
158
pub version : semver:: Version ,
159
159
pub product : Product ,
160
+ #[ allow( dead_code) ]
160
161
pub unlocked : bool ,
161
162
}
162
163
You can’t perform that action at this time.
0 commit comments