module RuboCop::Cop::ArrayHashIndentation
def incorrect_style_detected(column, offset, first, left_parenthesis,
def incorrect_style_detected(column, offset, first, left_parenthesis, left_brace) add_offense(first, :expression, message(base_description(left_parenthesis))) do base_column = column - configured_indentation_width - offset styles = detected_styles(base_column, left_parenthesis, left_brace) ambiguous_style_detected(*styles) end end