Skip to content

Files

Latest commit

 

History

History
27 lines (18 loc) · 483 Bytes

Layout-LineContinuationSpacing.md

File metadata and controls

27 lines (18 loc) · 483 Bytes

Pattern: Malformed line continuation spacing

Issue: -

Description

Checks that the backslash of a line continuation is separated from preceding text by exactly one space (default) or zero spaces.

Examples

EnforcedStyle: space (default)

# bad
'a'\
'b'  \
'c'

# good
'a' \
'b' \
'c'

Further Reading