♻️ Fix eslint warnings

This commit is contained in:
trickypr 2022-05-08 14:32:27 +10:00
parent 6d5b48c37f
commit f90dd9c30c
15 changed files with 67 additions and 45 deletions

View file

@ -14,12 +14,12 @@ import { patchCountFile } from '../../middleware/patch-check'
import { checkHash } from '../../utils'
import { log } from '../../log'
type ListrTaskGroup = Listr.ListrTask<any>
type ListrTaskGroup = Listr.ListrTask<unknown>
export interface IMelonPatch {
name: string
skip?: (
ctx: any
ctx: unknown
) => string | boolean | void | Promise<string | boolean | undefined>
}