clang-format is breaking up my lines at 80 columns. Is there a way to make stop breaking lines? The documentation doesn't seem to address this.
The configuration option responsible for it is called ColumnLimit
. You can remove the column limit by setting it to 0.
ColumnLimit: 0