Skip to content

Commit 3dcbb0b

Browse files
fix(deps): update dependency minimatch to v6 (#183)
* fix(deps): update dependency minimatch to v6 * format Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yosuke Ota <otameshiyo23@gmail.com>
1 parent 2553405 commit 3dcbb0b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"eslint-utils": "^3.0.0",
5252
"json-schema-migrate": "^2.0.0",
5353
"jsonc-eslint-parser": "^2.0.0",
54-
"minimatch": "^5.0.0",
54+
"minimatch": "^6.0.0",
5555
"synckit": "^0.8.0",
5656
"toml-eslint-parser": "^0.4.0",
5757
"tunnel-agent": "^0.6.0",

tests/src/eslint-compat.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ function getESLintClassForV6(): typeof eslint.ESLint {
8282

8383
// eslint-disable-next-line @typescript-eslint/require-await -- ignore
8484
public static async outputFixes(
85-
...params: Parameters<typeof eslint.ESLint["outputFixes"]>
86-
): ReturnType<typeof eslint.ESLint["outputFixes"]> {
85+
...params: Parameters<(typeof eslint.ESLint)["outputFixes"]>
86+
): ReturnType<(typeof eslint.ESLint)["outputFixes"]> {
8787
return CLIEngine.outputFixes({
8888
results: params[0],
8989
} as any);

0 commit comments

Comments
 (0)