Home / Function/ should_skip_entry() — tailwindcss Function Reference

should_skip_entry() — tailwindcss Function Reference

Architecture documentation for the should_skip_entry() function in walk.rs from the tailwindcss codebase.

Function rust Oxide Scanner calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  862035d5_a7df_75ac_7b1e_717ff1207a9a["should_skip_entry()"]
  8031325b_dcd2_8c49_70e7_46191ce03a79["walk.rs"]
  862035d5_a7df_75ac_7b1e_717ff1207a9a -->|defined in| 8031325b_dcd2_8c49_70e7_46191ce03a79
  d58582e3_a53c_e31d_6fdd_178c8966b65f["skip_entry()"]
  d58582e3_a53c_e31d_6fdd_178c8966b65f -->|calls| 862035d5_a7df_75ac_7b1e_717ff1207a9a
  dc874db4_e8a3_5292_d49c_2245b8b18f45["generate_work()"]
  dc874db4_e8a3_5292_d49c_2245b8b18f45 -->|calls| 862035d5_a7df_75ac_7b1e_717ff1207a9a
  934d114d_964b_414a_2b41_82e8174b7c3d["path()"]
  862035d5_a7df_75ac_7b1e_717ff1207a9a -->|calls| 934d114d_964b_414a_2b41_82e8174b7c3d
  style 862035d5_a7df_75ac_7b1e_717ff1207a9a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/ignore/src/walk.rs lines 1926–1937

fn should_skip_entry(ig: &Ignore, dent: &DirEntry) -> bool {
    let m = ig.matched_dir_entry(dent);
    if m.is_ignore() {
        log::debug!("ignoring {}: {:?}", dent.path().display(), m);
        true
    } else if m.is_whitelist() {
        log::debug!("whitelisting {}: {:?}", dent.path().display(), m);
        false
    } else {
        false
    }
}

Domain

Subdomains

Calls

Frequently Asked Questions

What does should_skip_entry() do?
should_skip_entry() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is should_skip_entry() defined?
should_skip_entry() is defined in crates/ignore/src/walk.rs at line 1926.
What does should_skip_entry() call?
should_skip_entry() calls 1 function(s): path.
What calls should_skip_entry()?
should_skip_entry() is called by 2 function(s): generate_work, skip_entry.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free