Skip to content

Commit

Permalink
Issue #2639: ID is removed from allowed abbreviations
Browse files Browse the repository at this point in the history
  • Loading branch information
romani committed Nov 25, 2015
1 parent 9586ee8 commit f8d7894
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/checkstyle_checks.xml
Expand Up @@ -320,7 +320,7 @@
<module name="AbbreviationAsWordInName">
<property name="ignoreFinal" value="false"/>
<property name="allowedAbbreviationLength" value="1"/>
<property name="allowedAbbreviations" value="AST,CPP,RTE,RE,ID,CSV"/>
<property name="allowedAbbreviations" value="AST,CPP,RTE,RE,CSV"/>
</module>
<module name="AbstractClassName"/>
<module name="ClassTypeParameterName"/>
Expand Down
7 changes: 6 additions & 1 deletion config/suppressions.xml
Expand Up @@ -34,9 +34,14 @@

<!-- should be removed at 7.0 version, we keep for some time to avoid braking compatibiilty -->
<suppress checks="AbbreviationAsWordInName"
files="nt/CheckstyleAntTask.java"
files="CheckstyleAntTask.java"
lines="230"/>

<!-- should be removed at 7.0 version, we keep for some time to avoid braking compatibiilty -->
<suppress checks="AbbreviationAsWordInName"
files="AbstractComplexityCheck.java"
lines="64"/>

<!-- illegal words are part of Javadoc -->
<suppress checks="TodoComment" files=".*TodoCommentCheck\.java"/>

Expand Down

0 comments on commit f8d7894

Please sign in to comment.