ignore-check

Check if a path is ignored

2 unstable releases

0.2.0 Sep 4, 2024
0.1.0 Sep 4, 2024
Download history 150/week @ 2024-08-29 122/week @ 2024-09-05 30/week @ 2024-09-12 19/week @ 2024-09-19 13/week @ 2024-09-26 3/week @ 2024-10-03

65 downloads per month
Used in 2 crates (via sprint)

MIT license

4KB
63 lines

About

Check if a path is ignored

The ignore crate's primary use case is walking a directory. It provides Gitignore and GitignoreBuilder to load .gitignore files but the usage is difficult.

This crate uses ignore but provides a much easier interface.

Usage

use ignore_check::{ignored, Ignore};

assert!(ignored("target").unwrap());
assert!(!ignored("src/lib.rs").unwrap());

// Use an `Ignore` to check multiple files under the same root directory:

let ignore = Ignore::new(".").unwrap();

assert!(ignore.check("target"));
assert!(!ignore.check("src/lib.rs"));

Dependencies

~4–12MB
~131K SLoC