empty() — tailwindcss Function Reference
Architecture documentation for the empty() function in gitignore.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD add79117_bda9_cdfc_f444_050522373f88["empty()"] 4070cc0c_7b7d_154a_4c5a_53a488f619d9["new()"] 4070cc0c_7b7d_154a_4c5a_53a488f619d9 -->|calls| add79117_bda9_cdfc_f444_050522373f88 12d9a85f_6ea1_3060_e637_3ee4e18adb00["global()"] 12d9a85f_6ea1_3060_e637_3ee4e18adb00 -->|calls| add79117_bda9_cdfc_f444_050522373f88 4a40236e_7852_7d42_0756_529c9da2f5ba["build_global()"] 4a40236e_7852_7d42_0756_529c9da2f5ba -->|calls| add79117_bda9_cdfc_f444_050522373f88 style add79117_bda9_cdfc_f444_050522373f88 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/gitignore.rs lines 140–151
pub fn empty() -> Gitignore {
Gitignore {
set: GlobSet::empty(),
root: PathBuf::from(""),
globs: vec![],
num_ignores: 0,
num_whitelists: 0,
matches: None,
// CHANGED: Add a flag to have Gitignore rules that apply only to files.
only_on_files: false,
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does empty() do?
empty() is a function in the tailwindcss codebase.
What calls empty()?
empty() is called by 3 function(s): build_global, global, new.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free