Skip to content

Commit

Permalink
chore: update glob types (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami committed Jun 25, 2020
1 parent ba4ad2e commit a410107
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/htmlhint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import * as chalk from 'chalk'
import * as program from 'commander'
import { existsSync, readFileSync, statSync } from 'fs'
import * as glob from 'glob'
import { IGlob } from 'glob'
import * as parseGlob from 'parse-glob'
import { dirname, resolve, sep } from 'path'
import * as request from 'request'
Expand Down Expand Up @@ -428,8 +429,7 @@ function walkPath(
})
}

// eslint-disable-next-line @typescript-eslint/no-explicit-any
const walk: any = glob(
const walk: IGlob = glob(
pattern,
{
cwd: base,
Expand Down

0 comments on commit a410107

Please sign in to comment.