fix(lint): prefix unused options parameter with underscore

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

Signed-off-by: Lidang-Jiang <lidangjiang@gmail.com>
This commit is contained in:
Lidang-Jiang
2026-03-29 10:14:53 +08:00
parent 3c3781ca43
commit 7462168377

View File

@@ -44,7 +44,7 @@ function isSuspiciousDocPath(filePath) {
* Exportable run() for in-process execution via run-with-flags.js. * Exportable run() for in-process execution via run-with-flags.js.
* Avoids the ~50-100ms spawnSync overhead when available. * Avoids the ~50-100ms spawnSync overhead when available.
*/ */
function run(inputOrRaw, options = {}) { function run(inputOrRaw, _options = {}) {
let input; let input;
try { try {
input = typeof inputOrRaw === 'string' input = typeof inputOrRaw === 'string'