fredrikekre / Runic.jl

A code formatter for Julia with rules set in stone.
MIT License
92 stars 2 forks source link

Line continuation for typed array literals #2

Closed fredrikekre closed 3 months ago

fredrikekre commented 3 months ago

E.g.

T[
1,
2,
]

should become

T[
    1,
    2,
]