Home / Function/ only_ignores() — tailwindcss Function Reference

only_ignores() — tailwindcss Function Reference

Architecture documentation for the only_ignores() function in overrides.rs from the tailwindcss codebase.

Entity Profile

Dependency Diagram

graph TD
  6af98b76_5882_aa38_8c4c_aa5d75d2b35f["only_ignores()"]
  a5cba1a8_a3c5_ad4e_86ce_19011ecc045b["ov()"]
  6af98b76_5882_aa38_8c4c_aa5d75d2b35f -->|calls| a5cba1a8_a3c5_ad4e_86ce_19011ecc045b
  db737829_f91d_719c_4c7f_a4130e5a1912["matched()"]
  6af98b76_5882_aa38_8c4c_aa5d75d2b35f -->|calls| db737829_f91d_719c_4c7f_a4130e5a1912
  style 6af98b76_5882_aa38_8c4c_aa5d75d2b35f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/ignore/src/overrides.rs lines 213–219

    fn only_ignores() {
        let ov = ov(&["!*.bar"]);
        assert!(ov.matched("a.rs", false).is_none());
        assert!(ov.matched("a.rs", true).is_none());
        assert!(ov.matched("a.bar", false).is_ignore());
        assert!(ov.matched("a.bar", true).is_ignore());
    }

Subdomains

Frequently Asked Questions

What does only_ignores() do?
only_ignores() is a function in the tailwindcss codebase.
What does only_ignores() call?
only_ignores() calls 2 function(s): matched, ov.

Analyze Your Own Codebase

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

Try Supermodel Free