(path: Path)
| 38 | |
| 39 | |
| 40 | def should_skip(path: Path) -> bool: |
| 41 | return any( |
| 42 | part in SKIP_DIRS or part.startswith(SKIP_PREFIXES) |
| 43 | for part in path.relative_to(ROOT).parts |
| 44 | ) |
| 45 | |
| 46 | |
| 47 | def iter_markdown_files() -> list[Path]: |
no outgoing calls
no test coverage detected