Pattern: Malformed operator line wrapping
Issue: -
Checks the policy on how to wrap lines on operators.
To configure the check:
<module name="OperatorWrap"/>
To configure the check for the assignment operator, =
, at the end of a line:
<module name="OperatorWrap">
<property name="tokens" value="ASSIGN"/>
<property name="option" value="eol"/>
</module>