Pattern: Misaligned element of multi-line array
Issue: -
This rule checks if the elements of a multi-line array literal are aligned.
# bad
a = [1, 2, 3,
4, 5, 6]
array = ['run',
'forrest',
'run']
# good
a = [1, 2, 3,
4, 5, 6]
a = ['run',
'forrest',
'run']