clippy lints

This commit is contained in:
Blaž Hrastnik 2021-03-22 12:26:04 +09:00
parent 798dbd27c5
commit c4792efead
3 changed files with 3 additions and 2 deletions

View file

@ -133,6 +133,7 @@ pub struct Selection {
primary_index: usize,
}
#[allow(clippy::len_without_is_empty)] // a Selection is never empty
impl Selection {
// eq

View file

@ -46,8 +46,8 @@ impl Application {
compositor.push(Box::new(ui::EditorView::new()));
let mut app = Self {
editor,
compositor,
editor,
executor,
};

View file

@ -139,7 +139,7 @@ impl Default for Theme {
let scopes = mapping.keys().map(ToString::to_string).collect();
Self { mapping, scopes }
Self { scopes, mapping }
}
}