Home / Function/ no_ignores() — tailwindcss Function Reference

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
  f0dce193_72fe_fd9b_0572_5a9a8a550c3c["no_ignores()"]
  b3ca296d_790b_9bf3_23ea_56e5c5c48565["walk.rs"]
  f0dce193_72fe_fd9b_0572_5a9a8a550c3c -->|defined in| b3ca296d_790b_9bf3_23ea_56e5c5c48565
  ad34ca57_79fe_7ec6_ca38_10ba5937d0e2["tmpdir()"]
  f0dce193_72fe_fd9b_0572_5a9a8a550c3c -->|calls| ad34ca57_79fe_7ec6_ca38_10ba5937d0e2
  2981eeff_1441_f747_1a13_e8238ee63e55["mkdirp()"]
  f0dce193_72fe_fd9b_0572_5a9a8a550c3c -->|calls| 2981eeff_1441_f747_1a13_e8238ee63e55
  eaa93251_8ff2_5e1b_adef_2cb61588bdb0["path()"]
  f0dce193_72fe_fd9b_0572_5a9a8a550c3c -->|calls| eaa93251_8ff2_5e1b_adef_2cb61588bdb0
  9c3b3196_f0f0_5b2a_ee9a_f692140fa4a4["wfile()"]
  f0dce193_72fe_fd9b_0572_5a9a8a550c3c -->|calls| 9c3b3196_f0f0_5b2a_ee9a_f692140fa4a4
  9df16f40_0af0_7013_ce71_ae30d02a8d20["assert_paths()"]
  f0dce193_72fe_fd9b_0572_5a9a8a550c3c -->|calls| 9df16f40_0af0_7013_ce71_ae30d02a8d20
  style f0dce193_72fe_fd9b_0572_5a9a8a550c3c 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

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