Pattern: Use of space before brackets
Issue: -
Checks for space between the name of a receiver and a left brackets.
# bad
collection [index_or_key]
# good
collection[index_or_key]
Pattern: Use of space before brackets
Issue: -
Checks for space between the name of a receiver and a left brackets.
# bad
collection [index_or_key]
# good
collection[index_or_key]