Hello,
I have a function that is repeated 64 times in my task. I had each manipulation formatted as a single line.
This way it is easier to maintain an overview of all manipulations (extracted bits in this case).
bit0 = sts1 |> map( fn: (r) => ({r with _field: "Prog", _value: bitwise.uand(a: uint(v: r._value), b: uint(v: 1)) >0}))
bit1 = sts1 |> map( fn: (r) => ({r with _field: "Oper", _value: bitwise.uand(a: uint(v: r._value), b: uint(v: 2)) >0}))
But when saving the task it reformats all my functions to multiple lines making the task 8 times longer (in lines of code). This way the entire overview is lost.
bit0 =
sts1
|> map(
fn: (r) =>
({r with _field: "Prog",
_value: bitwise.uand(a: uint(v: r._value), b: uint(v: 1)) >0,
}),
)
Is there a way to disable this auto-formatting behavior?