JuliaFormatter.jl icon indicating copy to clipboard operation
JuliaFormatter.jl copied to clipboard

weird behaviour with multiline comments

Open dpinol opened this issue 6 months ago • 0 comments

Formatting this with default configuration of 2.1.6

function f()
    #==Pairs Tuple or ValidationResult==#
    #=
    So far
    =#
end

we get

#=
So far
=#
function f()
    #==Pairs Tuple or ValidationResult==#

    #=
    So far
    =#
end

Then, at each consecutive formatting the 3 first times are replicated again and again

dpinol avatar Oct 09 '25 12:10 dpinol