mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-18 01:20:40 +00:00
Move Python whitespace utilities into new ruff_python_whitespace
crate (#4993)
## Summary `ruff_newlines` becomes `ruff_python_whitespace`, and includes the existing "universal newline" handlers alongside the Python whitespace-specific utilities.
This commit is contained in:
parent
e86f12a1ec
commit
1d756dc3a7
57 changed files with 153 additions and 140 deletions
5
crates/ruff_python_whitespace/src/lib.rs
Normal file
5
crates/ruff_python_whitespace/src/lib.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
mod newlines;
|
||||
mod whitespace;
|
||||
|
||||
pub use newlines::*;
|
||||
pub use whitespace::*;
|
Loading…
Add table
Add a link
Reference in a new issue