Skip to content

Commit

Permalink
Re-enable noscaladoc check (NVIDIA#474)
Browse files Browse the repository at this point in the history
This reverts commit 76a1d4d.

Signed-off-by: Jason Lowe <jlowe@nvidia.com>
  • Loading branch information
jlowe authored Jul 30, 2020
1 parent caa0a81 commit ee2b2ad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scalastyle-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,18 +96,18 @@ You can also disable only one rule, by specifying its rule id, as specified in:
<check level="error" class="org.scalastyle.scalariform.NotImplementedErrorUsage"
enabled="true"/>

<!-- ================================================================================ -->
<!-- rules we'd like to enforce, but haven't cleaned up the codebase yet -->
<!-- ================================================================================ -->

<check customId="NoScalaDoc" level="error" class="org.scalastyle.file.RegexChecker"
enabled="false">
enabled="true">
<parameters>
<parameter name="regex">(?m)^(\s*)/[*][*].*$(\r|)\n^\1 [*]</parameter>
</parameters>
<customMessage>Use Javadoc style indentation for multiline comments</customMessage>
</check>

<!-- ================================================================================ -->
<!-- rules we'd like to enforce, but haven't cleaned up the codebase yet -->
<!-- ================================================================================ -->

<!-- This project uses Javadoc rather than Scaladoc so scaladoc checks are disabled -->
<check enabled="false" class="org.scalastyle.scalariform.ScalaDocChecker" level="warning"/>

Expand Down

0 comments on commit ee2b2ad

Please sign in to comment.