@@ -41,11 +41,10 @@ class EslintJavascriptFormattingStepTest extends NpmFormatterStepCommonTests {
41
41
"custom_rules" , EslintFormatterStep .defaultDevDependenciesForTypescript (),
42
42
"styleguide/airbnb" , EslintStyleGuide .JS_AIRBNB .mergedWith (EslintFormatterStep .defaultDevDependencies ()),
43
43
"styleguide/google" , EslintStyleGuide .JS_GOOGLE .mergedWith (EslintFormatterStep .defaultDevDependencies ()),
44
- "styleguide/standard" , EslintStyleGuide .JS_STANDARD .mergedWith (EslintFormatterStep .defaultDevDependencies ()),
45
- "styleguide/xo" , EslintStyleGuide .JS_XO .mergedWith (EslintFormatterStep .defaultDevDependencies ()));
44
+ "styleguide/standard" , EslintStyleGuide .JS_STANDARD .mergedWith (EslintFormatterStep .defaultDevDependencies ()));
46
45
47
46
@ ParameterizedTest (name = "{index}: eslint can be applied using ruleset {0}" )
48
- @ ValueSource (strings = {"custom_rules" , "styleguide/airbnb" , "styleguide/google" , "styleguide/standard" , "styleguide/xo" })
47
+ @ ValueSource (strings = {"custom_rules" , "styleguide/airbnb" , "styleguide/google" , "styleguide/standard" })
49
48
void formattingUsingRulesetsFile (String ruleSetName ) throws Exception {
50
49
String filedir = "npm/eslint/javascript/" + ruleSetName + "/" ;
51
50
@@ -79,11 +78,10 @@ class EslintTypescriptFormattingStepTest extends NpmFormatterStepCommonTests {
79
78
80
79
private final Map <String , Map <String , String >> devDependenciesForRuleset = ImmutableMap .of (
81
80
"custom_rules" , EslintFormatterStep .defaultDevDependenciesForTypescript (),
82
- "styleguide/standard_with_typescript" , EslintStyleGuide .TS_STANDARD_WITH_TYPESCRIPT .mergedWith (EslintFormatterStep .defaultDevDependenciesForTypescript ()),
83
- "styleguide/xo" , EslintStyleGuide .TS_XO_TYPESCRIPT .mergedWith (EslintFormatterStep .defaultDevDependenciesForTypescript ()));
81
+ "styleguide/standard_with_typescript" , EslintStyleGuide .TS_STANDARD_WITH_TYPESCRIPT .mergedWith (EslintFormatterStep .defaultDevDependenciesForTypescript ()));
84
82
85
83
@ ParameterizedTest (name = "{index}: eslint can be applied using ruleset {0}" )
86
- @ ValueSource (strings = {"custom_rules" , "styleguide/standard_with_typescript" , "styleguide/xo" })
84
+ @ ValueSource (strings = {"custom_rules" , "styleguide/standard_with_typescript" })
87
85
void formattingUsingRulesetsFile (String ruleSetName ) throws Exception {
88
86
String filedir = "npm/eslint/typescript/" + ruleSetName + "/" ;
89
87
0 commit comments