fix: oxlint no unused expressions (#29675)

Co-authored-by: daniel <daniel@example.com>
This commit is contained in:
Angel98518
2025-12-16 18:00:04 +08:00
committed by GitHub
parent b7649f61f8
commit c2f2be6b08
8 changed files with 16 additions and 8 deletions

View File

@@ -10,7 +10,7 @@ export const extractFunctionParams = (code: string, language: CodeLanguage) => {
[CodeLanguage.python3]: /def\s+main\s*\((.*?)\)/,
[CodeLanguage.javascript]: /function\s+main\s*\((.*?)\)/,
}
const match = code.match(patterns[language])
const match = patterns[language].exec(code)
const params: string[] = []
if (match?.[1]) {