Switch line length from 80 to 100 columns

This commit is contained in:
Jay Berkenbilt 2023-05-21 13:34:20 -04:00
parent bbe9f8b83c
commit 6b077332d3
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ BraceWrapping:
AfterUnion: true
BreakBeforeBraces: Custom
BreakConstructorInitializers: AfterColon
ColumnLimit: 100
DeriveLineEnding: false
PackConstructorInitializers: Never
IncludeCategories:

View File

@ -44,7 +44,7 @@ partial summary of the formatting rules:
- Use spaces, not tabs.
- Keep lines to 80 columns when possible.
- Keep lines to 100 columns when possible.
- Braces are on their own lines after classes and functions (and
similar top-level constructs) and are compact otherwise.