Skip to content

Commit d5f1200

Browse files
GuillaumeGomezytmimi
authored andcommitted
Add documentation for negated ignored files and add a test for it as well
1 parent f781b1b commit d5f1200

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

Configurations.md

+9
Original file line numberDiff line numberDiff line change
@@ -1306,6 +1306,15 @@ If you want to ignore every file under the directory where you put your rustfmt.
13061306
ignore = ["/"]
13071307
```
13081308

1309+
If you want to allow specific paths that would otherwise be ignored, prefix those paths with a `!`:
1310+
1311+
```toml
1312+
ignore = ["bar_dir/*", "!bar_dir/*/what.rs"]
1313+
```
1314+
1315+
In this case, all files under `bar_dir` will be ignored, except files like `bar_dir/sub/what.rs`
1316+
or `bar_dir/another/what.rs`.
1317+
13091318
## `imports_indent`
13101319

13111320
Indent style of imports

src/ignore_path.rs

+18
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,22 @@ mod test {
4949
assert!(ignore_path_set.is_match(&FileName::Real(PathBuf::from("bar_dir/baz.rs"))));
5050
assert!(!ignore_path_set.is_match(&FileName::Real(PathBuf::from("src/bar.rs"))));
5151
}
52+
53+
#[nightly_only_test]
54+
#[test]
55+
fn test_negated_ignore_path_set() {
56+
use crate::config::{Config, FileName};
57+
use crate::ignore_path::IgnorePathSet;
58+
use std::path::{Path, PathBuf};
59+
60+
let config = Config::from_toml(
61+
r#"ignore = ["foo.rs", "bar_dir/*", "!bar_dir/*/what.rs"]"#,
62+
Path::new(""),
63+
)
64+
.unwrap();
65+
let ignore_path_set = IgnorePathSet::from_ignore_list(&config.ignore()).unwrap();
66+
assert!(ignore_path_set.is_match(&FileName::Real(PathBuf::from("bar_dir/what.rs"))));
67+
assert!(ignore_path_set.is_match(&FileName::Real(PathBuf::from("bar_dir/baz/a.rs"))));
68+
assert!(!ignore_path_set.is_match(&FileName::Real(PathBuf::from("bar_dir/baz/what.rs"))));
69+
}
5270
}

0 commit comments

Comments
 (0)