Skip to content

Commit c489e7e

Browse files
committed
Revert all changes back to main.
1 parent 8733425 commit c489e7e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class EslintFormatterStep {
4545

4646
public static final String NAME = "eslint-format";
4747

48-
public static final String DEFAULT_ESLINT_VERSION = "8.57.0";
48+
public static final String DEFAULT_ESLINT_VERSION = "^8.45.0";
4949

5050
public static Map<String, String> defaultDevDependenciesForTypescript() {
5151
return defaultDevDependenciesTypescriptWithEslint(DEFAULT_ESLINT_VERSION);

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023-2024 DiffPlug
2+
* Copyright 2023 DiffPlug
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -79,7 +79,7 @@ public enum EslintStyleGuide {
7979
@Override
8080
public @Nonnull Map<String, String> devDependencies() {
8181
Map<String, String> dependencies = new LinkedHashMap<>();
82-
dependencies.put("eslint-config-xo", "0.43.1");
82+
dependencies.put("eslint-config-xo", "^0.43.1");
8383
return dependencies;
8484
}
8585
};

0 commit comments

Comments
 (0)