check abstract method

List<Issue> check(
  1. ParsedFile file
)

Inspect a parsed file and return any findings.

MUST be pure (no side effects, no I/O). MUST be fast (<10ms typical). MUST return an empty list rather than throw on unexpected input.

Implementation

List<Issue> check(ParsedFile file);