Open
Description
Rule 3 is all about maintaining semantic indentation on function / macro calls, it shouldn't apply in other collections like maps and vectors which don't have such semantics.
Given the input:
[:div {}
"hello"]
{:a 1
:b 2}
#{1 2 3
4 5 6}
Expected
[:div {}
"hello"]
{:a 1
:b 2}
#{1 2 3
4 5 6}
Actual
(no change)