explicit_ignore_exclusive_use() — tailwindcss Function Reference
Architecture documentation for the explicit_ignore_exclusive_use() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD bffbf6f7_dfe7_3e30_825c_fef083bb024a["explicit_ignore_exclusive_use()"] e8c725dd_a885_9529_0af1_4e4171753fc6["tmpdir()"] bffbf6f7_dfe7_3e30_825c_fef083bb024a -->|calls| e8c725dd_a885_9529_0af1_4e4171753fc6 a870695d_932a_bfd4_fe92_a94ee09973bb["mkdirp()"] bffbf6f7_dfe7_3e30_825c_fef083bb024a -->|calls| a870695d_932a_bfd4_fe92_a94ee09973bb 65b715d0_a042_86f6_24a2_ee2f89075c41["wfile()"] bffbf6f7_dfe7_3e30_825c_fef083bb024a -->|calls| 65b715d0_a042_86f6_24a2_ee2f89075c41 09706e98_d626_7c2d_bf81_de1577238ae5["standard_filters()"] bffbf6f7_dfe7_3e30_825c_fef083bb024a -->|calls| 09706e98_d626_7c2d_bf81_de1577238ae5 88adb3a7_20c9_8b61_adf6_49be4e277a09["add_ignore()"] bffbf6f7_dfe7_3e30_825c_fef083bb024a -->|calls| 88adb3a7_20c9_8b61_adf6_49be4e277a09 5fe9aa4d_d793_b1a2_d187_4991d92c8d6e["assert_paths()"] bffbf6f7_dfe7_3e30_825c_fef083bb024a -->|calls| 5fe9aa4d_d793_b1a2_d187_4991d92c8d6e 006bb599_d40b_f53b_44c7_57dfd4237729["path()"] bffbf6f7_dfe7_3e30_825c_fef083bb024a -->|calls| 006bb599_d40b_f53b_44c7_57dfd4237729 style bffbf6f7_dfe7_3e30_825c_fef083bb024a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 2224–2242
fn explicit_ignore_exclusive_use() {
let td = tmpdir();
let igpath = td.path().join(".not-an-ignore");
mkdirp(td.path().join("a"));
wfile(&igpath, "foo");
wfile(td.path().join("foo"), "");
wfile(td.path().join("a/foo"), "");
wfile(td.path().join("bar"), "");
wfile(td.path().join("a/bar"), "");
let mut builder = WalkBuilder::new(td.path());
builder.standard_filters(false);
assert!(builder.add_ignore(&igpath).is_none());
assert_paths(
td.path(),
&builder,
&[".not-an-ignore", "bar", "a", "a/bar"],
);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does explicit_ignore_exclusive_use() do?
explicit_ignore_exclusive_use() is a function in the tailwindcss codebase.
What does explicit_ignore_exclusive_use() call?
explicit_ignore_exclusive_use() calls 7 function(s): add_ignore, assert_paths, mkdirp, path, standard_filters, tmpdir, wfile.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free