Skip to content

Files

Latest commit

 

History

History
29 lines (21 loc) · 940 Bytes

TodoComment.md

File metadata and controls

29 lines (21 loc) · 940 Bytes

Pattern: Unresolved warning comment

Issue: -

Description

Developers often add comments to code which is not complete or needs review. Most likely you want to fix or review the code, and then remove the comment, before you consider the code to be production ready.

Parameters

NameDescriptionTypeDefault Value
words Word list string TODO|FIXME

Example configuration

<check enabled="true" class="org.scalastyle.scalariform.TodoCommentChecker" level="warning">
 <parameters>
  <parameter name="words">TODO|FIXME</parameter>
 </parameters>
</check>