diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2012-08-29 15:26:54 +0600 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2012-08-29 16:01:55 +0600 |
commit | 5febd810614b647ca3d2c2d7149adc58c18942c7 (patch) | |
tree | d9447b9ccee6205ef34768e88f6efadd9c852498 /plugins/sonar-checkstyle-plugin | |
parent | ffde32687741fcf5c853becc833c849669988827 (diff) | |
download | sonarqube-5febd810614b647ca3d2c2d7149adc58c18942c7.tar.gz sonarqube-5febd810614b647ca3d2c2d7149adc58c18942c7.zip |
SONAR-3600 SONAR-3600 Support Checkstyle rules ClassTypeParameterName and MethodTypeParameterName
Diffstat (limited to 'plugins/sonar-checkstyle-plugin')
3 files changed, 6 insertions, 6 deletions
diff --git a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sonar-way.xml b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sonar-way.xml index a882de63115..f993268da83 100644 --- a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sonar-way.xml +++ b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sonar-way.xml @@ -148,11 +148,11 @@ </rule> <rule> <repositoryKey>checkstyle</repositoryKey> - <key>com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterName</key> + <key>com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterNameCheck</key> </rule> <rule> <repositoryKey>checkstyle</repositoryKey> - <key>com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterName</key> + <key>com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterNameCheck</key> </rule> </rules> </profile> diff --git a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sun-conventions.xml b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sun-conventions.xml index 9eef0c794d0..e987174d78d 100644 --- a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sun-conventions.xml +++ b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sun-conventions.xml @@ -619,11 +619,11 @@ </rule> <rule> <repositoryKey>checkstyle</repositoryKey> - <key>com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterName</key> + <key>com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterNameCheck</key> </rule> <rule> <repositoryKey>checkstyle</repositoryKey> - <key>com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterName</key> + <key>com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterNameCheck</key> </rule> </rules> </profile> 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 651b39e9ec0..c281f27bdcd 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 @@ -1298,7 +1298,7 @@ <configKey><![CDATA[Checker/TreeWalker/OneStatementPerLine]]></configKey> </rule> - <rule key="com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterName"> + <rule key="com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterNameCheck"> <priority>MAJOR</priority> <name><![CDATA[Class Type Parameter Name]]></name> <configKey><![CDATA[Checker/TreeWalker/ClassTypeParameterName]]></configKey> @@ -1307,7 +1307,7 @@ </param> </rule> - <rule key="com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterName"> + <rule key="com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterNameCheck"> <priority>MAJOR</priority> <name><![CDATA[Method Type Parameter Name]]></name> <configKey><![CDATA[Checker/TreeWalker/MethodTypeParameterName]]></configKey> |