Skip to content

Instantly share code, notes, and snippets.

@nrmancuso
Created June 7, 2022 03:56
Show Gist options
  • Select an option

  • Save nrmancuso/e46a3d11fe985fac1c4468c6b0f7fa4e to your computer and use it in GitHub Desktop.

Select an option

Save nrmancuso/e46a3d11fe985fac1c4468c6b0f7fa4e to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<module name = "Checker">
<property name="charset" value="UTF-8"/>
<!-- do not change severity to 'error', as that will hide errors caused by exceptions -->
<property name="severity" value="warning"/>
<!-- haltOnException is required for exception fixes and reporting of all exceptions -->
<property name="haltOnException" value="false"/>
<!-- BeforeExecutionFileFilters is required for sources of java9 -->
<module name="BeforeExecutionExclusionFileFilter">
<property name="fileNamePattern" value="module\-info\.java$" />
</module>
<module name="OrderedProperties"/>
<property name="fileExtensions" value="properties"/>
<!-- Example of filter -->
<!--
<module name="SeverityMatchFilter">
<property name="severity" value="warning"/>
<property name="acceptOnMatch" value="false"/>
</module>
-->
</module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment