ignored 0.0.2

A Rust implementation of the .gitignore file format for quickly checking whether a path is ignored by git - without invoking the git cli.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! An evaluator for `.gitignore` files in a given directory and its parent directories.
//!
//! The full specification of the `.gitignore` format, along with the behavior and hierarchy of `.gitignore` files,
//! can be found in the [git documentation](https://git-scm.com/docs/gitignore).

mod error;
mod evaluator;
mod file;
mod glob;
mod types;
mod utils;

pub use evaluator::Evaluator;
pub use file::File;
pub use glob::Glob;

pub use error::Error;
pub(crate) use types::Result;