mirror of
https://github.com/astral-sh/ruff
synced 2026-01-21 21:40:51 -05:00
## Summary This is similar to `commands::check` vs. `commands::check_stdin`, and gets the logic out of the parent file (`lib.rs`). It also ensures that we avoid formatting files that should be excluded when `--force-exclude` is provided.
12 lines
273 B
Rust
12 lines
273 B
Rust
pub(crate) mod add_noqa;
|
|
pub(crate) mod check;
|
|
pub(crate) mod check_stdin;
|
|
pub(crate) mod clean;
|
|
pub(crate) mod config;
|
|
pub(crate) mod format;
|
|
pub(crate) mod format_stdin;
|
|
pub(crate) mod linter;
|
|
pub(crate) mod rule;
|
|
pub(crate) mod show_files;
|
|
pub(crate) mod show_settings;
|