Skip to content

Files

Latest commit

 

History

History
37 lines (21 loc) · 804 Bytes

EmptyForInitializerPad.md

File metadata and controls

37 lines (21 loc) · 804 Bytes

Pattern: Wrong padding of an empty for initializer

Issue: -

Description

Checks the padding of an empty for initializer; that is whether white space is required at an empty for initializer, or such white space is forbidden. No check occurs if there is a line wrap at the initializer, as in

for (
      ; i < j; i++, j--)

Examples

To configure the check:

<module name="EmptyForInitializerPad"/>

To configure the check to require white space at an empty for iterator:

<module name="EmptyForInitializerPad">
    <property name="option" value="space"/>
</module>

Further Reading