Skip to content

Commit

Permalink
Turn off noscaladoc rule until codebase is fixed (NVIDIA#464)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Lowe <jlowe@nvidia.com>
  • Loading branch information
jlowe authored Jul 29, 2020
1 parent b3c46b4 commit 76a1d4d
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="true">
enabled="false">
<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 76a1d4d

Please sign in to comment.