Convert eclipse format file to checkstyle file

I have an eclipse format file (which contains some configurations) and I want to do the same (these configurations) for the checkstyle file that will be used after the maven build.

+5
source share
2 answers

The Eclipse-Checkstyle plugin provides an export function to export your settings.

+2
source

Unfortunately, there is no way to convert a format file into a checkstyle rule set at the moment. You must do it differently as described here .

.

+2

All Articles