File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/src/main/java/com/diffplug/spotless/npm Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,17 +47,17 @@ public class EslintFormatterStep {
47
47
48
48
public static final String NAME = "eslint-format" ;
49
49
50
- public static final String DEFAULT_ESLINT_VERSION = "^8.31 .0" ;
50
+ public static final String DEFAULT_ESLINT_VERSION = "^8.45 .0" ;
51
51
52
52
public static Map <String , String > defaultDevDependenciesForTypescript () {
53
53
return defaultDevDependenciesTypescriptWithEslint (DEFAULT_ESLINT_VERSION );
54
54
}
55
55
56
56
public static Map <String , String > defaultDevDependenciesTypescriptWithEslint (String eslintVersion ) {
57
57
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 " );
61
61
dependencies .put ("eslint" , Objects .requireNonNull (eslintVersion ));
62
62
return dependencies ;
63
63
}
You can’t perform that action at this time.
0 commit comments