Skip to content

Files

Latest commit

 

History

History
33 lines (21 loc) · 432 Bytes

Layout-SpaceAroundKeyword.md

File metadata and controls

33 lines (21 loc) · 432 Bytes

Pattern: Malformed space around keyword

Issue: -

Description

Checks the spacing around the keywords.

Examples

# bad
something 'test'do|x|
end

while(something)
end

something = 123if test

# good
something 'test' do |x|
end

while (something)
end

something = 123 if test

Further Reading