You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some module names in checkstyle.xml have the Check suffix. For example, <module name="TypeNameCheck">.
We should change them to be <module name="TypeName">, as the Check suffix is not needed for checkstyle to work. The module name would also be more concise if the suffix is removed.
Prerequisite: se-edu/addressbook-level4#279 (further study about changes in checkstyle.xml is required)
Some module names in checkstyle.xml have the
Check
suffix. For example,<module name="TypeNameCheck">
.We should change them to be
<module name="TypeName">
, as theCheck
suffix is not needed for checkstyle to work. The module name would also be more concise if the suffix is removed.Reference: http://stackoverflow.com/questions/41931046/checkstyle-module-name-constantname-vs-constantnamecheck
The text was updated successfully, but these errors were encountered: