()
| 33 | } |
| 34 | |
| 35 | func (f *Formatter) WithBeautify() *Formatter { |
| 36 | f.mode = FormatModeBeautify |
| 37 | return f |
| 38 | } |
| 39 | |
| 40 | // WithIndent sets the indentation string used when beautifying SQL. |
| 41 | // The indent parameter should not be empty to maintain proper formatting. |
no outgoing calls