Pattern: Closing bracket does not match indentation of opening bracket's line
Issue: -
Closing brackets should match the same indentation level of the line that their opening bracket started on.
In this example the last line should be indented at the same level as the first line.
result = function_that_takes_arguments(
'a', 'b', 'c',
'd', 'e', 'f',
)
result = function_that_takes_arguments(
'a', 'b', 'c',
'd', 'e', 'f',
)