aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-checkstyle-plugin
diff options
context:
space:
mode:
authorGodin <mandrikov@gmail.com>2010-11-23 16:30:48 +0000
committerGodin <mandrikov@gmail.com>2010-11-23 16:30:48 +0000
commitbb2cd28550c5c33d82473c7b8fb5fdadea80976f (patch)
tree7ccaa3df91f28c310d64442950dcc9096ad83060 /plugins/sonar-checkstyle-plugin
parentfeaffdac3f1c2e55754c332014d96d0a9c833906 (diff)
downloadsonarqube-bb2cd28550c5c33d82473c7b8fb5fdadea80976f.tar.gz
sonarqube-bb2cd28550c5c33d82473c7b8fb5fdadea80976f.zip
SONAR-1971: Change description of TodoComment rule
Diffstat (limited to 'plugins/sonar-checkstyle-plugin')
-rw-r--r--plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml
index b96aabb830b..3f0e1962c5a 100644
--- a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml
+++ b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml
@@ -1523,13 +1523,13 @@ Rationale: Too large methods and classes are hard to read and costly to maintain
</param>
</rule>
<rule key="com.puppycrawl.tools.checkstyle.checks.TodoCommentCheck" priority="MINOR">
- <name><![CDATA[Todo Comment]]></name>
+ <name><![CDATA[Comment pattern matcher]]></name>
<configKey><![CDATA[Checker/TreeWalker/TodoComment]]></configKey>
<category name="Maintainability"/>
<cardinality>MULTIPLE</cardinality>
- <description><![CDATA[A check for TODO comments.]]></description>
+ <description><![CDATA[This rule allows to find any kind of pattern inside comments like TODO, NOPMD, NOSONAR, ...]]></description>
<param key="format" type="r">
- <description><![CDATA[pattern to check. Default is TODO:]]></description>
+ <description><![CDATA[Regular expression pattern to check. Default is TODO:]]></description>
</param>
</rule>
<rule key="com.puppycrawl.tools.checkstyle.checks.indentation.TrailingCommentCheck" priority="MINOR">