Skip to content

Files

Latest commit

 

History

History
18 lines (11 loc) · 450 Bytes

SpaceAfterIf.md

File metadata and controls

18 lines (11 loc) · 450 Bytes

Pattern: Malformed space after if

Issue: -

Description

Checks that there is exactly one space (blank) after the if keyword and before the opening parenthesis.

Examples of violations:

if(true) { }                            // violation
if  (true) { }                          // violation

Further Reading