Skip to content

Commit

Permalink
Update from extractor auto execution
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 26, 2024
1 parent 0cf916e commit 250736e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LineLength/Example4/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</module>

<module name="LineLength">
<property name="fileExtensions" value="java"/>
<property name="fileExtensions" value="xml, properties"/>
</module>

<!-- as we run on regression even on non-compiled files we need to skip exceptions on them -->
Expand Down
3 changes: 2 additions & 1 deletion LineLength/Example5/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
</module>

<module name="LineLength">
<property name="fileExtensions" value="xml, properties"/>
<property name="ignorePattern" value="^(import) "/>
<property name="max" value="60"/>
</module>

<!-- as we run on regression even on non-compiled files we need to skip exceptions on them -->
Expand Down
11 changes: 3 additions & 8 deletions LineLength/all-examples-in-one/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,14 @@
</module>

<module name="LineLength">
<property name="fileExtensions" value="java"/>
<property name="fileExtensions" value="xml, properties"/>
<property name="id" value="example4"/>
</module>

<module name="LineLength">
<property name="fileExtensions" value="xml, properties"/>
<property name="id" value="example5"/>
</module>

<module name="LineLength">
<property name="id" value="example6"/>
<property name="ignorePattern" value="^$"/>
<property name="max" value="50"/>
<property name="ignorePattern" value="^(import) "/>
<property name="max" value="60"/>
</module>

<!-- as we run on regression even on non-compiled files we need to skip exceptions on them -->
Expand Down

0 comments on commit 250736e

Please sign in to comment.