Skip to content

chore(release): 0.12.0 #721

chore(release): 0.12.0

chore(release): 0.12.0 #721

Triggered via push January 13, 2024 20:31
Status Success
Total duration 21s
Artifacts

commitlint.yml

on: push
commitlint
10s
commitlint
Fit to window
Zoom out
Zoom in

Annotations

2 errors
you seem to use `.enumerate()` and immediately discard the index: src/config.rs#L47
error: you seem to use `.enumerate()` and immediately discard the index --> src/config.rs:47:26 | 47 | for (_, conf) in confs.iter().enumerate() { | ^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_enumerate_index = note: `-D clippy::unused-enumerate-index` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::unused_enumerate_index)]` help: remove the `.enumerate()` call | 47 | for conf in confs.iter() { | ~~~~ ~~~~~~~~~~~~
you seem to use `.enumerate()` and immediately discard the index: src/config.rs#L47
error: you seem to use `.enumerate()` and immediately discard the index --> src/config.rs:47:26 | 47 | for (_, conf) in confs.iter().enumerate() { | ^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_enumerate_index = note: `-D clippy::unused-enumerate-index` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::unused_enumerate_index)]` help: remove the `.enumerate()` call | 47 | for conf in confs.iter() { | ~~~~ ~~~~~~~~~~~~