cruise-automation / isopod

An expressive DSL and framework for Kubernetes configuration without YAML
Apache License 2.0
482 stars 32 forks source link

Clean up indentation for code generator #68

Closed jonnylangefeld closed 4 years ago

jonnylangefeld commented 4 years ago

Currently the code generator creates arrays like this

blah_blah=[foobar(
    something,
),
foobar(
    something_else,
)]

But other code formatter actually expect this:

blah_blah=[
    foobar(
        something,
    ),
    foobar(
        something_else,
    ),
]