Disable selective warnings to make cargo check happy

This commit is contained in:
Conrad Irwin 2023-11-02 13:28:58 -06:00
parent 269a72464d
commit 8283909dfd
6 changed files with 20 additions and 10 deletions

View file

@ -1,3 +1,6 @@
#![allow(unused_variables, dead_code, unused_mut)]
// todo!() this is to make transition easier.
pub mod dock;
pub mod item;
pub mod notifications;
@ -2999,7 +3002,7 @@ impl Workspace {
}
Some(())
});
})?;
}
Ok(())
}