Remove public re-export of commands (#2801)

This commit is contained in:
Charlie Marsh 2023-02-11 23:59:35 -05:00 committed by GitHub
parent 4a12ebb9b1
commit c53f91d943
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 27 deletions

View file

@ -1,18 +1,9 @@
pub use add_noqa::add_noqa;
pub use clean::clean;
pub use linter::linter;
pub use rule::rule;
pub use run::run;
pub use run_stdin::run_stdin;
pub use show_files::show_files;
pub use show_settings::show_settings;
mod add_noqa;
mod clean;
pub mod add_noqa;
pub mod clean;
pub mod config;
mod linter;
mod rule;
mod run;
mod run_stdin;
mod show_files;
mod show_settings;
pub mod linter;
pub mod rule;
pub mod run;
pub mod run_stdin;
pub mod show_files;
pub mod show_settings;