The `newline-after-import` rule doesn't hit if the import-statements are immediately followed by comments: This piece of code is expected to produce an error, but it doesn't: ```ts import { join } from "path"; /** * */ console.log(); ```