Currently, if there is no trailing `,` after the last enum variant, the variant is completely removed from the formatted output. Example: ``` contract; enum Color { Red : (), Blue : () } ``` is formatted to ``` contract; enum Color { Red : (), } ```