Skip to content

Commit

Permalink
yegor256#1055: RegexpSinglelineCheck applies to *.png, *.js, *.css files
Browse files Browse the repository at this point in the history
  • Loading branch information
dgroup committed Jun 23, 2019
1 parent 5b43d35 commit c33a6ad
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,15 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<module name="RegexpSingleline">
<property name="format" value="\s+$"/>
<property name="fileExtensions" value="java"/>
<property name="message" value="Line has trailing spaces."/>
</module>
<!--
C++ style inline comment is not allowed.
-->
<module name="RegexpSingleline">
<property name="format" value="/\*.*\*/"/>
<property name="fileExtensions" value="java"/>
<property name="message" value="This kind of comment is not allowed."/>
</module>
<!--
Expand Down

0 comments on commit c33a6ad

Please sign in to comment.