Go to file
2021-01-29 17:15:16 +03:00
conf Clean up 2021-01-29 17:15:16 +03:00
.gitignore Initial commit (#1) 2021-01-21 16:07:57 +03:00
LICENSE Cleanup from maven (#5) 2021-01-28 18:43:43 +03:00
README.md Cleanup from maven (#5) 2021-01-28 18:43:43 +03:00

java-checkstyle-config

Our check style config based on Google style

Usage example:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-checkstyle-plugin</artifactId>
    <version>3.1.1</version>
    <executions>
        <execution>
            <id>validate</id>
            <phase>validate</phase>
            <configuration>
                <configLocation>https://raw.githubusercontent.com/rbkmoney/java-checkstyle-config/master/conf/rbkmoney_google_checkstyle.xml</configLocation>
                <encoding>UTF-8</encoding>
                <failsOnError>true</failsOnError>
                <consoleOutput>true</consoleOutput>
                <violationSeverity>warning</violationSeverity>
                <includeTestSourceDirectory>true</includeTestSourceDirectory>
            </configuration>
            <goals>
                <goal>check</goal>
            </goals>
        </execution>
    </executions>
</plugin>