Home / Function/ it_should_ignore_known_extensions() — tailwindcss Function Reference

it_should_ignore_known_extensions() — tailwindcss Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

crates/oxide/tests/scanner.rs lines 340–356

    fn it_should_ignore_known_extensions() {
        let ScanResult {
            files,
            globs,
            normalized_sources,
            ..
        } = scan(&[
            ("index.html", ""),
            ("a.css", ""),
            ("b.sass", ""),
            ("c.less", ""),
        ]);

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

Domain

Subdomains

Calls

Frequently Asked Questions

What does it_should_ignore_known_extensions() do?
it_should_ignore_known_extensions() is a function in the tailwindcss codebase.
What does it_should_ignore_known_extensions() call?
it_should_ignore_known_extensions() 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