goformat icon indicating copy to clipboard operation
goformat copied to clipboard

Alternative to gofmt with configurable formatting style (indentation etc.)

Results 2 goformat issues
Sort by recently updated
recently updated
newest added

func BoolToNumber[T T_Number](v bool) T { if v { return T(1) } return T(0) } ------------------------------------------ when run goformat commant, it will be changed to: func BoolToNumber(v bool) T {...

I'm using Go 1.20.12 on Linux, and am having difficulty following the instructions in README. Is there a way to install this package from source? --- My previous attempts: ```shell...