Clippy is now added to the `check` in the pipeline Co-authored-by: Ian Letourneau <letourneau.ian@gmail.com> Reviewed-on: https://git.nationtech.io/NationTech/harmony/pulls/96
8 lines
128 B
Rust
8 lines
128 B
Rust
#[allow(clippy::module_inception)]
|
|
mod config;
|
|
mod manager;
|
|
mod shell;
|
|
pub use config::*;
|
|
pub use manager::*;
|
|
pub use shell::*;
|