ruff/crates/ruff_python_whitespace/src/lib.rs
Charlie Marsh 1d756dc3a7
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.
2023-06-10 00:59:57 +00:00

5 lines
75 B
Rust

mod newlines;
mod whitespace;
pub use newlines::*;
pub use whitespace::*;