Skip to content

Files

Latest commit

 

History

History
21 lines (13 loc) · 388 Bytes

Layout-SpaceBeforeComment.md

File metadata and controls

21 lines (13 loc) · 388 Bytes

Pattern: Missing space before comment

Issue: -

Description

This rule checks for missing space between a token and a comment on the same line.

Examples

# bad
1 + 1# this operation does ...

# good
1 + 1 # this operation does ...

Further Reading