MCPcopy Create free account
hub / github.com/FastLED/FastLED / _should_skip_scan_dir

Function _should_skip_scan_dir

ci/meson/cache_utils.py:46–53  ·  view source on GitHub ↗

Return True if this directory should be excluded from source file scanning.

(name: str)

Source from the content-addressed store, hash-verified

44
45
46def _should_skip_scan_dir(name: str) -> bool:
47 """Return True if this directory should be excluded from source file scanning."""
48 if name in _SKIP_DIR_NAMES:
49 return True
50 for prefix in _SKIP_DIR_PREFIXES:
51 if name.startswith(prefix):
52 return True
53 return False
54
55
56def get_max_dir_mtime(root: Path) -> float:

Callers 2

get_max_dir_mtimeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected