JuliaFormatter.jl
JuliaFormatter.jl copied to clipboard
Handling of block anonymous functions in keywords
It seems that all available styles modify this call:
shader = ShadeConf(
indicator = function (x, y)
if x > -.4
return true
end
return false
end
)
to this less readable variant (imho):
shader = ShadeConf(; indicator=function (x, y)
if x > -.4
return true
end
return false
end)