blob: 82cacc8ed02f1a0d335227a2fcd576c8a410d710 [file] [log] [blame]
///
pub mod ignore;
mod attribute;
pub use attribute::{Error, Iter, Kind, Lines};
/// Parse git ignore patterns, line by line, from `bytes`.
pub fn ignore(bytes: &[u8]) -> ignore::Lines<'_> {
ignore::Lines::new(bytes)
}