Check if file is in an excluded directory.
(file_path: Path)
| 185 | } |
| 186 | |
| 187 | def should_exclude_file(file_path: Path) -> bool: |
| 188 | """Check if file is in an excluded directory.""" |
| 189 | parts = file_path.parts |
| 190 | return any(excluded_dir in parts for excluded_dir in excluded_dirs) |
| 191 | |
| 192 | language_counts = {} |
| 193 |
no outgoing calls
no test coverage detected