Skip to content

Instantly share code, notes, and snippets.

@Mukundhan-I2I
Created September 10, 2019 07:06
Show Gist options
  • Save Mukundhan-I2I/fbce7be5fc7cdbfb7d4326fcdc4c3bf1 to your computer and use it in GitHub Desktop.
Save Mukundhan-I2I/fbce7be5fc7cdbfb7d4326fcdc4c3bf1 to your computer and use it in GitHub Desktop.
checkstyle intlellij
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<!--
Checkstyle configuration that enforces deVero conventions during build time
-->
<module name="Checker">
<property name="charset" value="UTF-8" />
<property name="fileExtensions" value="java" />
<module name="TreeWalker">
<!-- Initialize cyclomatic complexity with default value 10 -->
<module name="CyclomaticComplexity">
<property name="max" value="20"/>
</module> <!-- Initialize NPathComplexity with default value 200 -->
<module name="NPathComplexity">
<property name="max" value="1000"/>
</module> </module> <!-- end TreeWalker -->
</module> <!-- end Checker -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment