Skip to content

Files

Latest commit

 

History

History
30 lines (17 loc) · 527 Bytes

WhitespaceAfter.md

File metadata and controls

30 lines (17 loc) · 527 Bytes

Pattern: No whitespace after token

Issue: -

Description

Checks that a token is followed by whitespace.

Examples

To configure the check:

<module name="WhitespaceAfter"/>

To configure the check for whitespace only after COMMA and SEMI tokens:

<module name="WhitespaceAfter">
    <property name="tokens" value="COMMA, SEMI"/>
</module>

Further Reading