[TS] Enable noUnusedParameters (#3110)

This commit is contained in:
Chenlei Hu
2025-03-17 16:47:45 -04:00
committed by GitHub
parent 7e66e99c3a
commit 7af003fcab
31 changed files with 79 additions and 93 deletions

View File

@@ -240,7 +240,7 @@ export class ChangeTracker {
true
)
window.addEventListener('keyup', (e) => {
window.addEventListener('keyup', () => {
if (keyIgnored) {
keyIgnored = false
logger.debug('checkState on keyup')
@@ -352,7 +352,7 @@ export class ChangeTracker {
})
}
static bindInput(app: ComfyApp, activeEl: Element | null): boolean {
static bindInput(_app: ComfyApp, activeEl: Element | null): boolean {
if (
!activeEl ||
activeEl.tagName === 'CANVAS' ||