(text: str)
| 1341 | |
| 1342 | |
| 1343 | def is_honest_missing_declaration(text: str) -> bool: |
| 1344 | normalized = normalize_lint_whitespace(text) |
| 1345 | if not any(token in normalized for token in HONEST_MISSING_TOKENS): |
| 1346 | return False |
| 1347 | if not any(token in normalized for token in HONEST_MISSING_BASIS_TOKENS): |
| 1348 | return False |
| 1349 | if not any(token in normalized for token in HONEST_MISSING_IMPACT_TOKENS): |
| 1350 | return False |
| 1351 | return len(normalized) >= 30 |
| 1352 | |
| 1353 | |
| 1354 | def has_reference_entry(text: str) -> bool: |
no test coverage detected