Skip to content

Commit 3577f4e

Browse files
committed
fix: provide "lower" default versions for ts_standard
as the upstream package has incompatible version restrictions otherwise
1 parent 6afb611 commit 3577f4e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

testlib/src/main/java/com/diffplug/spotless/npm/EslintStyleGuide.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ public enum EslintStyleGuide {
2929
@Override
3030
public @Nonnull Map<String, String> devDependencies() {
3131
Map<String, String> dependencies = new LinkedHashMap<>();
32-
dependencies.put("eslint-config-standard-with-typescript", "^36.1.0");
32+
dependencies.put("@typescript-eslint/eslint-plugin", "^5.62.0");
33+
dependencies.put("@typescript-eslint/parser", "^5.62.0");
34+
dependencies.put("eslint-config-standard-with-typescript", "^36.0.1");
3335
dependencies.put("eslint-plugin-import", "^2.27.5");
3436
dependencies.put("eslint-plugin-n", "^16.0.1");
3537
dependencies.put("eslint-plugin-promise", "^6.1.1");

0 commit comments

Comments
 (0)