Home / Function/ it_should_ignore_known_files() — tailwindcss Function Reference

it_should_ignore_known_files() — tailwindcss Function Reference

Architecture documentation for the it_should_ignore_known_files() function in scanner.rs from the tailwindcss codebase.

Entity Profile

Dependency Diagram

graph TD
  2e6a0376_b97d_045f_abf8_68b9fe19c1dc["it_should_ignore_known_files()"]
  66c99d71_b17e_d5a4_2a47_c675fac3c9cc["scan()"]
  2e6a0376_b97d_045f_abf8_68b9fe19c1dc -->|calls| 66c99d71_b17e_d5a4_2a47_c675fac3c9cc
  style 2e6a0376_b97d_045f_abf8_68b9fe19c1dc fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/tests/scanner.rs lines 373–388

    fn it_should_ignore_known_files() {
        let ScanResult {
            files,
            globs,
            normalized_sources,
            ..
        } = scan(&[
            ("index.html", ""),
            ("package-lock.json", ""),
            ("yarn.lock", ""),
        ]);

        assert_eq!(files, vec!["index.html"]);
        assert_eq!(globs, vec!["*"]);
        assert_eq!(normalized_sources, vec!["**/*"]);
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does it_should_ignore_known_files() do?
it_should_ignore_known_files() is a function in the tailwindcss codebase.
What does it_should_ignore_known_files() call?
it_should_ignore_known_files() calls 1 function(s): scan.

Analyze Your Own Codebase

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

Try Supermodel Free