We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba4ad2e commit a410107Copy full SHA for a410107
src/cli/htmlhint.ts
@@ -5,6 +5,7 @@ import * as chalk from 'chalk'
5
import * as program from 'commander'
6
import { existsSync, readFileSync, statSync } from 'fs'
7
import * as glob from 'glob'
8
+import { IGlob } from 'glob'
9
import * as parseGlob from 'parse-glob'
10
import { dirname, resolve, sep } from 'path'
11
import * as request from 'request'
@@ -428,8 +429,7 @@ function walkPath(
428
429
})
430
}
431
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
432
- const walk: any = glob(
+ const walk: IGlob = glob(
433
pattern,
434
{
435
cwd: base,
0 commit comments