Skip to content

Commit

Permalink
Correct checkstyle LineLength
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdesair committed Jun 30, 2021
1 parent f62277c commit 58865f0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
<property name="eachLine" value="true"/>
</module>

<module name="LineLength">
<property name="max" value="120"/>
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
</module>

<module name="TreeWalker">
<module name="TodoComment">
<property name="severity" value="warning"/>
Expand All @@ -30,10 +35,6 @@
<property name="allowByTailComment" value="true"/>
<property name="allowNonPrintableEscapes" value="true"/>
</module>
<module name="LineLength">
<property name="max" value="120"/>
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
</module>
<module name="AvoidStarImport"/>
<module name="RedundantImport"/>
<module name="UnusedImports"/>
Expand Down Expand Up @@ -235,4 +236,4 @@
<property name="message" value="Line has trailing whitespace"/>
<property name="fileExtensions" value="java, properties, cfg, css, js, xml"/>
</module>
</module>
</module>

0 comments on commit 58865f0

Please sign in to comment.