If I format the following Julia code using JuliaFormatter v2.3.0, one space is removed from the second line every time I apply the formatter:
error_str = Δa -> "Change in activity must be within the valid range: \
Δa ∈ [1, 2], but Δa = $Δa"
Consequently, JuliaFormatter (e.g. set up as a CI job) will request changes every time until there are no spaces left and the code looks like:
error_str = Δa -> "Change in activity must be within the valid range: \
Δa ∈ [1, 2], but Δa = $Δa"
If I format the following Julia code using
JuliaFormatterv2.3.0, one space is removed from the second line every time I apply the formatter:Consequently, JuliaFormatter (e.g. set up as a CI job) will request changes every time until there are no spaces left and the code looks like: