fredrikekre / Runic.jl

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

Spaces between items in `using`, `import` `public` #25

Closed KristofferC closed 3 months ago

KristofferC commented 3 months ago

These should probably have spaces:

julia> using Runic: Runic, format_string

julia> format_string("using A:B")
"using A:B"

julia> format_string("import a,b")
"import a,b"

julia> format_string("public a,b")
"public a,b"