1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! File processing and linting logic. //! //! This module handles file discovery, core linting/fixing, and embedded markdown processing. mod discovery; mod doc_comments; mod embedded; mod fix_reporting; mod processing; pub use discovery::*; pub use doc_comments::format_doc_comment_blocks; pub use fix_reporting::*; pub use processing::*; #[cfg(test)] mod tests;