mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-27 12:29:28 +00:00

## Summary Extends the pragma comment detection in the formatter to support case-insensitive `noqa` (as supposed by Ruff), plus a variety of other pragmas (`isort:`, `nosec`, etc.). Also extracts the detection out into the trivia crate so that we can reuse it in the linter (see: https://github.com/astral-sh/ruff/issues/7471). ## Test Plan `cargo test`
12 lines
218 B
Rust
12 lines
218 B
Rust
mod comment_ranges;
|
|
mod cursor;
|
|
mod pragmas;
|
|
pub mod textwrap;
|
|
mod tokenizer;
|
|
mod whitespace;
|
|
|
|
pub use comment_ranges::CommentRanges;
|
|
pub use cursor::*;
|
|
pub use pragmas::*;
|
|
pub use tokenizer::*;
|
|
pub use whitespace::*;
|