Skip to content

Commit c658432

Browse files
committed
fix lint inssue
1 parent 11fe1fb commit c658432

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/find/src/pluginManager/pluginFileLoaders.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export async function loadPluginViaTsFile(pluginFolderPath: string): Promise<Plu
3636

3737
const base64CompiledPlugin = Buffer.from(outputFileContents).toString('base64')
3838
return dynamicImport(`data:text/javascript;base64,${base64CompiledPlugin}`)
39-
} catch (e) {
39+
} catch {
4040
core.warning(`Error loading plugin at path: ${pluginEntryPath}`)
4141
}
4242
}

0 commit comments

Comments
 (0)