1
2
3
4
5
6
7
8
pub mod ignore;

mod attribute;
pub use attribute::{Error, Iter, Kind, Lines};

pub fn ignore(buf: &[u8]) -> ignore::Lines<'_> {
    ignore::Lines::new(buf)
}