fredrikekre / Runic.jl

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

Move keyword arguments to the end and always use `;` before kwargs #33

Open fredrikekre opened 1 month ago

fredrikekre commented 1 month ago

For example

 f(a; b) = a + b
-f(b = 2, 4)
-f(4, b = 2)
+f(4; b = 2)
+f(4; b = 2)