Skip to content

Commit 1dd92da

Browse files
committed
chore: bump default eslint version
1 parent 0c0be38 commit 1dd92da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/src/main/java/com/diffplug/spotless/npm/EslintFormatterStep.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ public class EslintFormatterStep {
4747

4848
public static final String NAME = "eslint-format";
4949

50-
public static final String DEFAULT_ESLINT_VERSION = "^8.31.0";
50+
public static final String DEFAULT_ESLINT_VERSION = "^8.45.0";
5151

5252
public static Map<String, String> defaultDevDependenciesForTypescript() {
5353
return defaultDevDependenciesTypescriptWithEslint(DEFAULT_ESLINT_VERSION);
5454
}
5555

5656
public static Map<String, String> defaultDevDependenciesTypescriptWithEslint(String eslintVersion) {
5757
Map<String, String> dependencies = new LinkedHashMap<>();
58-
dependencies.put("@typescript-eslint/eslint-plugin", "^5.47.0");
59-
dependencies.put("@typescript-eslint/parser", "^5.47.0");
60-
dependencies.put("typescript", "^4.9.4");
58+
dependencies.put("@typescript-eslint/eslint-plugin", "^6.1.0");
59+
dependencies.put("@typescript-eslint/parser", "^6.1.0");
60+
dependencies.put("typescript", "^5.1.6");
6161
dependencies.put("eslint", Objects.requireNonNull(eslintVersion));
6262
return dependencies;
6363
}

0 commit comments

Comments
 (0)