on two different machines, same last Idea EAP, aut...
# intellij
e
on two different machines, same last Idea EAP, autoformat leaves this on one untouched
Copy code
fun sliderCalcRatioFromValueT(dataType: DataType, v: Int, vMin: Int, vMax: Int,
                                  power: Float, linearZeroPos: Float): Float {
while on the other one
Copy code
fun sliderCalcRatioFromValueT(
            dataType: DataType, v: Int, vMin: Int, vMax: Int,
            power: Float, linearZeroPos: Float,
    ): Float {
anything I can tweak?
w
Do both use the same formatter settings, specifically trailing commas? I think having trailing commas feature borked autoformatting a bit
e
on this one machine (the one that leaves it untouched) I have unchecked. I never checked it on the other one (and I havent access atm), so I presume is off there as well
a
For me wrapping works with the following settings
e
uh nice, I'll check that as soon as possible, thanks both