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
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -1,4 +1,5 @@
pub mod args;
#[allow(clippy::module_inception)]
pub mod output;
pub use output::*;
+1
View File
@@ -1,5 +1,6 @@
pub mod print;
pub mod print_table;
#[allow(clippy::module_inception)]
pub mod printer;
pub use print::*;
+1
View File
@@ -1,4 +1,5 @@
pub mod arg;
#[allow(clippy::module_inception)]
pub mod table;
pub use table::*;