Skip to content

Commit 107c276

Browse files
committed
#115 Update to Checkstyle 8.15
1 parent 519cd5f commit 107c276

File tree

11 files changed

+10
-5
lines changed

11 files changed

+10
-5
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.14-all.jar" sourcepath="checkstyle-checkstyle-8.14.zip"/>
3+
<classpathentry exported="true" kind="lib" path="checkstyle-8.15-all.jar" sourcepath="checkstyle-checkstyle-8.15.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.14.0"
4848
Bundle-ClassPath: .,
49-
checkstyle-8.14-all.jar
49+
checkstyle-8.15-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.14-all.jar
4+
checkstyle-8.15-all.jar
55
jars.compile.order = .
66
source.. = metadata/
-10.3 MB
Binary file not shown.
-5.98 MB
Binary file not shown.

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@
153153
<property-value-option value="LITERAL_DO"/>
154154
<property-value-option value="STATIC_INIT"/>
155155
<property-value-option value="INSTANCE_INIT"/>
156-
<property-value-option value="LAMBDA"/>
157156
</enumeration>
158157
</property-metadata>
159158
<property-metadata name="shouldStartLine" datatype="Boolean" default-value="true">

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,12 @@
224224
<property-metadata name="validateAbstractClassNames" datatype="Boolean" default-value="true">
225225
<description>%IllegalType.validateAbstractClassNames</description>
226226
</property-metadata>
227-
<property-metadata name="tokens" datatype="MultiCheck" default-value="ANNOTATION_FIELD_DEF,METHOD_CALL,METHOD_DEF,METHOD_REF,PARAMETER_DEF,VARIABLE_DEF">
227+
<property-metadata name="tokens" datatype="MultiCheck" default-value="ANNOTATION_FIELD_DEF,CLASS_DEF,INTERFACE_DEF,METHOD_CALL,METHOD_DEF,METHOD_REF,PARAMETER_DEF,VARIABLE_DEF">
228228
<description>%IllegalType.tokens</description>
229229
<enumeration>
230230
<property-value-option value="ANNOTATION_FIELD_DEF" />
231+
<property-value-option value="CLASS_DEF" />
232+
<property-value-option value="INTERFACE_DEF" />
231233
<property-value-option value="METHOD_CALL" />
232234
<property-value-option value="METHOD_DEF" />
233235
<property-value-option value="METHOD_REF" />

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ JavadocType.tokens = Tokens to check.
4444
JavadocType.versionFormat = Pattern for @version tag.
4545
JavadocType.allowUnknownTags = Whether to ignore errors when a Javadoc tag is not recognised.
4646
JavadocType.allowMissingParamTags = whether to ignore errors when a class has type parameters but does not have matching param tags in the javadoc.
47+
JavadocType.allowedAnnotations = List of annotations that allow missed documentation. Only short names are allowed, e.g. <code>Generated</code>.
4748
4849
JavadocVariable.desc = Checks that variables have Javadoc comments.
4950
JavadocVariable.excludeScope = visibility scope where Javadoc comments are not checked

0 commit comments

Comments
 (0)