Pattern: Incorrect annotation style
Issue: -
This check controls the style with the usage of annotations.
To configure the check:
<module name="AnnotationUseStyle"/>
To configure the check to enforce an expanded
style, with a trailing array comma set to never
and always including the closing parenthesis.
<module name="AnnotationUseStyle">
<property name="elementStyle" value="expanded"/>
<property name="trailingArrayComma" value="never"/>
<property name="closingParens" value="always"/>
</module>