Skip to content

Files

Latest commit

 

History

History
21 lines (13 loc) · 395 Bytes

Layout-SpaceInsideArrayPercentLiteral.md

File metadata and controls

21 lines (13 loc) · 395 Bytes

Pattern: Space inside array percent literal

Issue: -

Description

Checks for unnecessary additional spaces inside array percent literals (i.e. %i/%w).

Examples

# good
%i(foo bar baz)

# bad
%w(foo  bar  baz)

Further Reading