Return True if directory should be skipped during scans.
(name: str)
| 53 | |
| 54 | |
| 55 | def should_skip_dir(name: str) -> bool: |
| 56 | """Return True if directory should be skipped during scans.""" |
| 57 | return name in SKIP_DIR_NAMES or name.startswith(".") |
| 58 | |
| 59 | |
| 60 | def is_generated_file(path: Path) -> bool: |
no outgoing calls
no test coverage detected