Change code formatter configuration files from 100 to 120 characters.

This commit is contained in:
Wayne Stambaugh 2025-03-17 17:34:06 -04:00
parent 6307f0aee8
commit 7645f05962
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ BreakBeforeTernaryOperators: true
BreakConstructorInitializers: AfterColon BreakConstructorInitializers: AfterColon
BreakConstructorInitializersBeforeComma: false BreakConstructorInitializersBeforeComma: false
BreakStringLiterals: true BreakStringLiterals: true
ColumnLimit: 100 ColumnLimit: 120
ConstructorInitializerAllOnOneLineOrOnePerLine: false ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 8 ConstructorInitializerIndentWidth: 8
ContinuationIndentWidth: 8 ContinuationIndentWidth: 8

View File

@ -24,7 +24,7 @@ BreakBeforeBraces: Allman
BreakBeforeTernaryOperators: true BreakBeforeTernaryOperators: true
BreakConstructorInitializers: AfterColon BreakConstructorInitializers: AfterColon
BreakStringLiterals: true BreakStringLiterals: true
ColumnLimit: 100 ColumnLimit: 120
ConstructorInitializerAllOnOneLineOrOnePerLine: false ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 8 ConstructorInitializerIndentWidth: 8
ContinuationIndentWidth: 8 ContinuationIndentWidth: 8

View File

@ -1274,7 +1274,7 @@ pos_class_colon = trail # ignore/join/lead/lead_bre
# #
# Try to limit code width to N number of columns # Try to limit code width to N number of columns
code_width = 100 # number code_width = 120 # number
# Whether to fully split long 'for' statements at semi-colons # Whether to fully split long 'for' statements at semi-colons
ls_for_split_full = true # false/true ls_for_split_full = true # false/true