chore: enable safe clippy pedantic lints

This commit is contained in:
Christian Visintin
2026-03-21 15:43:16 +01:00
parent bede4adaeb
commit 1acb8b2a60
17 changed files with 50 additions and 36 deletions

View File

@@ -872,7 +872,7 @@ impl Component<Msg, NoUserEvent> for InputColor {
}
Event::Keyboard(KeyEvent {
// NOTE: escaped control sequence
code: Key::Char('h') | Key::Char('r') | Key::Char('s'),
code: Key::Char('h' | 'r' | 's'),
modifiers: KeyModifiers::CONTROL,
}) => Some(Msg::None),
Event::Keyboard(KeyEvent {