pine-format 0.2.2

An opinionated formatter for Pine Script.
Documentation
1
2
3
4
5
add(a,b)=>a+b
sign(x) => x>0?1:x<0?-1:0
----
add(a, b) => a + b
sign(x) => x > 0 ? 1 : x < 0 ? -1 : 0