Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions config/checkstyle-checks.xml
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,10 @@
<property name="scope" value="public"/>
</module>
<module name="JavadocTagContinuationIndentation"/>
<module name="JavadocType">
<!-- avoid errors on tag '@noinspection' -->
<property name="allowUnknownTags" value="true"/>
</module>
<module name="SingleLineJavadoc"/>

<!-- Metrics -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,23 @@

/**
* This class contains the metadata that describes a check rule.
*
* @param identity
* the identity of the rule (name, internal name, etc.)
* @param defaultSeverity
* the default severity level
* @param hidden
* <code>true</code> if the rule should be hidden from the user
* @param hasSeverity
* <code>true</code> if the rule has a severity level
* @param deletable
* <code>true</code> if the rule is deletable
* @param isSingleton
* <code>true</code> if the rule is a singleton
* @param messageKeys
* the message keys supported by the rule
* @param configPropMetadata
* the property metadata for the rule
*/
public record RuleMetadata(RuleIdentity identity, Severity defaultSeverity, boolean hidden,
boolean hasSeverity, boolean deletable, boolean isSingleton, List<String> messageKeys,
Expand Down
Loading