Skip to content

Files

Latest commit

 

History

History
31 lines (18 loc) · 570 Bytes

OperatorWrap.md

File metadata and controls

31 lines (18 loc) · 570 Bytes

Pattern: Malformed operator line wrapping

Issue: -

Description

Checks the policy on how to wrap lines on operators.

Examples

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>

Further Reading