Skip to content

Files

Latest commit

 

History

History
21 lines (13 loc) · 363 Bytes

Layout-SpaceBeforeBrackets.md

File metadata and controls

21 lines (13 loc) · 363 Bytes

Pattern: Use of space before brackets

Issue: -

Description

Checks for space between the name of a receiver and a left brackets.

Examples

# bad
collection [index_or_key]

# good
collection[index_or_key]

Further Reading