Skip to content

Files

Latest commit

 

History

History
21 lines (13 loc) · 307 Bytes

Layout-SpaceBeforeSemicolon.md

File metadata and controls

21 lines (13 loc) · 307 Bytes

Pattern: Space before ;

Issue: -

Description

Checks for semicolon (;) preceded by space.

Examples

# bad
x = 1 ; y = 2

# good
x = 1; y = 2

Further Reading