Prevent JuliaFormatter from adding whitespaces to logging arguments

Is there any setting that I can add to my .JuliaFormatter.toml that stops it from adding whitespaces to something like

@error "An error occured" code="XY on Z" foo=1 bar=2

because I find the resulting

@error "An error occured" code = "XY on Z" foo = 1 bar = 2

sometimes really hard to read.

Additional question, is there a way to prevent

Dict(
    key => val
    for (key, val) in foo_dict
)

foo = [
    "too long", "for a single line"
]

being changed to

Dict(
    key => val for
    (key, val) in foo_dict
)


foo =
    ["too long", "for a single line"]