From e928732523470d29bbc89863d8ca1a0a6a70549d Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Sun, 30 Nov 2025 15:44:15 +0000 Subject: [PATCH] docs(linter/plugins): fix JSDoc comment (#16295) Fix JSDoc comment for `lintFileImpl`. It doesn't return anything. Diagnostics are stored in a global var. --- apps/oxlint/src-js/plugins/lint.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/oxlint/src-js/plugins/lint.ts b/apps/oxlint/src-js/plugins/lint.ts index c7990cd933427..d784db3c34011 100644 --- a/apps/oxlint/src-js/plugins/lint.ts +++ b/apps/oxlint/src-js/plugins/lint.ts @@ -79,7 +79,6 @@ export function lintFile( * @param ruleIds - IDs of rules to run on this file * @param optionsIds - IDs of options to use for rules on this file * @param settingsJSON - Stringified settings for this file - * @returns Diagnostics to send back to Rust * @throws {Error} If any parameters are invalid * @throws {*} If any rule throws */