Skip to content

Commit a410107

Browse files
authored
chore: update glob types (#449)
1 parent ba4ad2e commit a410107

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cli/htmlhint.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import * as chalk from 'chalk'
55
import * as program from 'commander'
66
import { existsSync, readFileSync, statSync } from 'fs'
77
import * as glob from 'glob'
8+
import { IGlob } from 'glob'
89
import * as parseGlob from 'parse-glob'
910
import { dirname, resolve, sep } from 'path'
1011
import * as request from 'request'
@@ -428,8 +429,7 @@ function walkPath(
428429
})
429430
}
430431

431-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
432-
const walk: any = glob(
432+
const walk: IGlob = glob(
433433
pattern,
434434
{
435435
cwd: base,

0 commit comments

Comments
 (0)