Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
| #!/usr/bin/env node | |
| import fs from "node:fs"; | |
| import path from "node:path"; | |
| import process from "node:process"; | |
| const frontendDir = path.resolve(path.dirname(new URL(import.meta.url).pathname), ".."); | |
| const sourceDir = path.join(frontendDir, "src"); | |
| const bannedPattern = /\brouter\.prefetch\s*\(/; | |
| const ignoredPathSegments = [ |