Skip to content

Commit 3134ee5

Browse files
Calixteromani
authored andcommitted
Issue #193: update to Checkstyle 8.27
1 parent 52ae17c commit 3134ee5

File tree

7 files changed

+17
-3
lines changed

7 files changed

+17
-3
lines changed

net.sf.eclipsecs.checkstyle/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry exported="true" kind="lib" path="checkstyle-8.26-all.jar" sourcepath="checkstyle-checkstyle-8.26.zip"/>
3+
<classpathentry exported="true" kind="lib" path="checkstyle-8.27-all.jar" sourcepath="checkstyle-checkstyle-8.27.zip"/>
44
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
55
<attributes>
66
<attribute name="maven.pomderived" value="true"/>

net.sf.eclipsecs.checkstyle/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ Export-Package: .,
4646
com.puppycrawl.tools.checkstyle.utils,
4747
org.apache.commons.beanutils;version="8.26.0"
4848
Bundle-ClassPath: .,
49-
checkstyle-8.26-all.jar
49+
checkstyle-8.27-all.jar
5050
Automatic-Module-Name: net.sf.eclipsecs.checkstyle
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
bin.includes = META-INF/,\
22
.,\
33
license/,\
4-
checkstyle-8.26-all.jar
4+
checkstyle-8.27-all.jar
55
jars.compile.order = .
66
source.. = metadata/

net.sf.eclipsecs.checkstyle/metadata/com/puppycrawl/tools/checkstyle/checks/javadoc/checkstyle-metadata.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ JavadocBlockTagLocation.desc = Checks that a javadoc b
106106
JavadocBlockTagLocation.violateExecutionOnNonTightHtml = Control when to print violations if the Javadoc being examined by this check violates the tight html rules defined at Tight-HTML Rules
107107
JavadocBlockTagLocation.tags = Specify the javadoc tags to process.
108108
109+
JavadocContentLocation.name = Javadoc Content Location
110+
JavadocContentLocation.desc = Checks that the Javadoc content begins from the same position for all Javadoc comments in the project. Any leading asterisks and spaces are not counted as the beginning of the content and are therefore ignored.
111+
JavadocContentLocation.location = Specify the policy on placement of the Javadoc content.
112+
109113
JavadocParagraph.name = Javadoc Paragraph
110114
JavadocParagraph.desc=Checks that:<ul><li>There is one blank line between each of two paragraphs and one blank line before the at-clauses block if it is present.</li><li>Each paragraph but the first has &lt;p&gt; immediately before the first word, with no space after.</li></ul>
111115
JavadocParagraph.allowNewlineParagraph= whether the <p> tag should be placed immediately before the first word

net.sf.eclipsecs.checkstyle/metadata/com/puppycrawl/tools/checkstyle/checks/javadoc/checkstyle-metadata.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,16 @@
400400
<message-key key="javadoc.parse.rule.error" />
401401
<message-key key="javadoc.wrong.singleton.html.tag" />
402402
</rule-metadata>
403+
404+
<rule-metadata name="%JavadocContentLocation.name" internal-name="JavadocContentLocation" parent="TreeWalker">
405+
<alternative-name internal-name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocContentLocationCheck" />
406+
<description>%JavadocContentLocation.desc</description>
407+
<property-metadata name="location" datatype="String" default-value="second_line">
408+
<description>%JavadocContentLocation.location</description>
409+
</property-metadata>
410+
<message-key key="javadoc.content.first.line" />
411+
<message-key key="javadoc.content.second.line" />
412+
</rule-metadata>
403413

404414
<rule-metadata name="%JavadocParagraph.name" internal-name="JavadocParagraph" parent="TreeWalker">
405415
<alternative-name internal-name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocParagraphCheck" />

0 commit comments

Comments
 (0)