🎨 Style(custom): use underscore (_) for unused variables

This commit is contained in:
Kuingsmile
2024-05-25 13:55:40 +08:00
parent 16d6a19051
commit c102ac5158
19 changed files with 75 additions and 79 deletions

View File

@@ -49,7 +49,7 @@ onBeforeMount(() => {
$bus.on(SHOW_INPUT_BOX, initInputBoxValue)
})
function ipcEventHandler (evt: IpcRendererEvent, options: IShowInputBoxOption) {
function ipcEventHandler (_: IpcRendererEvent, options: IShowInputBoxOption) {
initInputBoxValue(options)
}