Skip to content

Rule 3 indentation should only apply to lists #193

Open
@yuhan0

Description

@yuhan0

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)

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions