allow module inception

Reasons:
- The containing module is already reexported, so repitition in
  namespace is unnecessary.

Signed-off-by: Perma Alesheikh <me@prma.dev>
This commit is contained in:
Perma Alesheikh 2024-01-09 14:43:44 +03:30 committed by Clément DOUIN
parent fc59757a9d
commit a15e2c0442
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72
3 changed files with 3 additions and 0 deletions

View file

@ -1,4 +1,5 @@
pub mod args;
#[allow(clippy::module_inception)]
pub mod output;
pub use output::*;

View file

@ -1,5 +1,6 @@
pub mod print;
pub mod print_table;
#[allow(clippy::module_inception)]
pub mod printer;
pub use print::*;

View file

@ -1,4 +1,5 @@
pub mod arg;
#[allow(clippy::module_inception)]
pub mod table;
pub use table::*;