Skip to content

Commit

Permalink
Small backward-compatible correction for latest Checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
at88mph committed Jun 26, 2024
1 parent 925860a commit d35e1db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cadc-quality/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sourceCompatibility = 1.8

group = 'org.opencadc'

version = '1.0'
version = '1.1'

description = 'OpenCADC Checkstyle Code Quality Rules'
def git_url = 'https://github.com/opencadc/core'
Expand Down
8 changes: 4 additions & 4 deletions cadc-quality/src/main/resources/cadc_checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
<module name="FileTabCharacter">
<property name="eachLine" value="true"/>
</module>
<module name="LineLength">
<property name="max" value="160"/> <!--cadc changed from 100 -->
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
</module>

<module name="TreeWalker">
<module name="OuterTypeFilename"/>
Expand All @@ -46,10 +50,6 @@
<property name="allowByTailComment" value="true"/>
<property name="allowNonPrintableEscapes" value="true"/>
</module>
<module name="LineLength">
<property name="max" value="160"/> <!--cadc changed from 100 -->
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
</module>
<module name="AvoidStarImport"/>
<module name="OneTopLevelClass"/>
<module name="NoLineWrap"/>
Expand Down

0 comments on commit d35e1db

Please sign in to comment.