mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-27 12:29:28 +00:00
Split commands.rs into separate files (#2792)
This commit is contained in:
parent
d827a9156e
commit
77e65c9ff5
10 changed files with 456 additions and 384 deletions
17
crates/ruff_cli/src/commands/mod.rs
Normal file
17
crates/ruff_cli/src/commands/mod.rs
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue