Split commands.rs into separate files (#2792)

This commit is contained in:
Charlie Marsh 2023-02-11 21:58:13 -05:00 committed by GitHub
parent d827a9156e
commit 77e65c9ff5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 456 additions and 384 deletions

View file

@ -0,0 +1,17 @@
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;
mod linter;
mod rule;
mod run;
mod run_stdin;
mod show_files;
mod show_settings;