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
  b25e74cb_d02f_c9e6_92de_1947bfbe7964["no_ignores()"]
  e8c725dd_a885_9529_0af1_4e4171753fc6["tmpdir()"]
  b25e74cb_d02f_c9e6_92de_1947bfbe7964 -->|calls| e8c725dd_a885_9529_0af1_4e4171753fc6
  a870695d_932a_bfd4_fe92_a94ee09973bb["mkdirp()"]
  b25e74cb_d02f_c9e6_92de_1947bfbe7964 -->|calls| a870695d_932a_bfd4_fe92_a94ee09973bb
  65b715d0_a042_86f6_24a2_ee2f89075c41["wfile()"]
  b25e74cb_d02f_c9e6_92de_1947bfbe7964 -->|calls| 65b715d0_a042_86f6_24a2_ee2f89075c41
  5fe9aa4d_d793_b1a2_d187_4991d92c8d6e["assert_paths()"]
  b25e74cb_d02f_c9e6_92de_1947bfbe7964 -->|calls| 5fe9aa4d_d793_b1a2_d187_4991d92c8d6e
  006bb599_d40b_f53b_44c7_57dfd4237729["path()"]
  b25e74cb_d02f_c9e6_92de_1947bfbe7964 -->|calls| 006bb599_d40b_f53b_44c7_57dfd4237729
  style b25e74cb_d02f_c9e6_92de_1947bfbe7964 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.
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