watchexec/lib/src/ignore.rs

10 lines
149 B
Rust
Raw Permalink Normal View History

//! Ignore files: find them, parse them, interpret them.
2022-01-11 12:59:39 +01:00
#[doc(inline)]
2022-01-15 03:12:32 +01:00
pub use files::*;
#[doc(inline)]
pub use filter::*;
2022-01-15 03:12:32 +01:00
mod files;
2022-01-11 12:59:39 +01:00
mod filter;