flowmark 0.3.1

A Markdown auto-formatter for clean diffs and semantic line breaks
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! File discovery and filtering.
//!
//! Ported from Python: `flowmark/file_resolver/`

pub mod config;
pub(crate) mod defaults;
pub mod gitignore;
pub mod resolver;

pub use config::FileResolverConfig;
pub use resolver::FileResolver;