(text: str)
| 1291 | |
| 1292 | |
| 1293 | def is_placeholder_like(text: str) -> bool: |
| 1294 | normalized = normalize_lint_whitespace(text) |
| 1295 | if not normalized: |
| 1296 | return True |
| 1297 | return matches_any_pattern(normalized, PLACEHOLDER_ONLY_PATTERNS) |
| 1298 | |
| 1299 | |
| 1300 | def issue(section: str, reason: str, severity: str, snippet: str) -> dict[str, object]: |
no test coverage detected