builder:Application: remove rule lister
This commit is contained in:
parent
f57fcfe3f6
commit
23d1a49592
1 changed files with 0 additions and 11 deletions
|
@ -1,10 +1,8 @@
|
||||||
package net.kemitix.checkstyle.ruleset.builder;
|
package net.kemitix.checkstyle.ruleset.builder;
|
||||||
|
|
||||||
import org.springframework.boot.CommandLineRunner;
|
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates the checkstyle ruleset files.
|
* Creates the checkstyle ruleset files.
|
||||||
|
@ -21,13 +19,4 @@ public class CheckstyleRulesetBuilderApplication {
|
||||||
public static void main(final String[] args) {
|
public static void main(final String[] args) {
|
||||||
SpringApplication.run(CheckstyleRulesetBuilderApplication.class, args);
|
SpringApplication.run(CheckstyleRulesetBuilderApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean
|
|
||||||
public CommandLineRunner listRules(final RulesProperties rulesProperties) {
|
|
||||||
return args -> rulesProperties.getRules()
|
|
||||||
.stream()
|
|
||||||
.map(Rule::getName)
|
|
||||||
.map(name -> String.format("- %s", name))
|
|
||||||
.forEach(System.out::println);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue