pine-format 0.2.3

An opinionated formatter for Pine Script.
Documentation
type Bucket
    // running total
    int count = 0 // trailing on count
    float sum // accumulated

    // a gap, then a documented field
    bool ready = false

enum Dir
    // upward
    up = "Up" // trailing up
    down // downward
----
type Bucket
    // running total
    int count = 0 // trailing on count
    float sum // accumulated

    // a gap, then a documented field
    bool ready = false

enum Dir
    // upward
    up = "Up" // trailing up
    down // downward