Check the file content and return any issues found. Args: file_content: FileContent object containing path, content, and lines Returns: List of error messages, empty if no issues found
(self, file_content: FileContent)
| 137 | |
| 138 | @abstractmethod |
| 139 | def check_file_content(self, file_content: FileContent) -> list[str]: |
| 140 | """Check the file content and return any issues found. |
| 141 | |
| 142 | Args: |
| 143 | file_content: FileContent object containing path, content, and lines |
| 144 | |
| 145 | Returns: |
| 146 | List of error messages, empty if no issues found |
| 147 | """ |
| 148 | pass |
| 149 | |
| 150 | |
| 151 | class MultiCheckerFileProcessor: |
no outgoing calls