no_ignores() — tailwindcss Function Reference
Architecture documentation for the no_ignores() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD f06bf788_48f7_9140_26a8_903494b1bc8e["no_ignores()"] 8031325b_dcd2_8c49_70e7_46191ce03a79["walk.rs"] f06bf788_48f7_9140_26a8_903494b1bc8e -->|defined in| 8031325b_dcd2_8c49_70e7_46191ce03a79 c755c2fc_c832_3451_a38d_48285b12e6d3["tmpdir()"] f06bf788_48f7_9140_26a8_903494b1bc8e -->|calls| c755c2fc_c832_3451_a38d_48285b12e6d3 eb9cff24_ad95_e69f_d2f3_914faaa93121["mkdirp()"] f06bf788_48f7_9140_26a8_903494b1bc8e -->|calls| eb9cff24_ad95_e69f_d2f3_914faaa93121 934d114d_964b_414a_2b41_82e8174b7c3d["path()"] f06bf788_48f7_9140_26a8_903494b1bc8e -->|calls| 934d114d_964b_414a_2b41_82e8174b7c3d dc15f3bc_b785_736f_2fa4_5e6e62bbfee6["wfile()"] f06bf788_48f7_9140_26a8_903494b1bc8e -->|calls| dc15f3bc_b785_736f_2fa4_5e6e62bbfee6 3c337f58_9743_cefc_9b9d_984193abd3d2["assert_paths()"] f06bf788_48f7_9140_26a8_903494b1bc8e -->|calls| 3c337f58_9743_cefc_9b9d_984193abd3d2 style f06bf788_48f7_9140_26a8_903494b1bc8e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 2139–2151
fn no_ignores() {
let td = tmpdir();
mkdirp(td.path().join("a/b/c"));
mkdirp(td.path().join("x/y"));
wfile(td.path().join("a/b/foo"), "");
wfile(td.path().join("x/y/foo"), "");
assert_paths(
td.path(),
&WalkBuilder::new(td.path()),
&["x", "x/y", "x/y/foo", "a", "a/b", "a/b/foo", "a/b/c"],
);
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does no_ignores() do?
no_ignores() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is no_ignores() defined?
no_ignores() is defined in crates/ignore/src/walk.rs at line 2139.
What does no_ignores() call?
no_ignores() calls 5 function(s): assert_paths, mkdirp, path, tmpdir, wfile.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free