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
  d099d442_2087_e30a_30a4_e3d55b7cfc4c["no_ignores()"]
  be21cd9d_32f8_3eb7_b73d_40d5a95dc7c5["tmpdir()"]
  d099d442_2087_e30a_30a4_e3d55b7cfc4c -->|calls| be21cd9d_32f8_3eb7_b73d_40d5a95dc7c5
  6be2bc5c_2422_2c09_8c7a_3e92060e5ad1["mkdirp()"]
  d099d442_2087_e30a_30a4_e3d55b7cfc4c -->|calls| 6be2bc5c_2422_2c09_8c7a_3e92060e5ad1
  e3491efe_c25e_6614_b6f7_1a3834b9d724["wfile()"]
  d099d442_2087_e30a_30a4_e3d55b7cfc4c -->|calls| e3491efe_c25e_6614_b6f7_1a3834b9d724
  03f45cf3_87f6_e91f_bef8_2f9380aab005["assert_paths()"]
  d099d442_2087_e30a_30a4_e3d55b7cfc4c -->|calls| 03f45cf3_87f6_e91f_bef8_2f9380aab005
  5a41a98a_774e_c950_dcbd_cc7fe1960b89["path()"]
  d099d442_2087_e30a_30a4_e3d55b7cfc4c -->|calls| 5a41a98a_774e_c950_dcbd_cc7fe1960b89
  style d099d442_2087_e30a_30a4_e3d55b7cfc4c 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"],
        );
    }

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