David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
25212a5
Branches
Tags
c++11
main
start
testcode.git
.clang-format
Don't force column length limit
dblume
commited
25212a5
at 2023-08-18 09:52:45
.clang-format
Blame
History
Raw
--- Language: Cpp BasedOnStyle: Google AlignOperands: false AllowAllArgumentsOnNextLine: true AllowAllParametersOfDeclarationOnNextLine: true AllowShortCaseLabelsOnASingleLine: false AllowShortFunctionsOnASingleLine: Empty AllowShortIfStatementsOnASingleLine: WithoutElse AllowShortLoopsOnASingleLine: false BinPackArguments: true BinPackParameters: true PackConstructorInitializers: NextLine # available in v14 # Support vim navigation with [[ and ]] BreakBeforeBraces: Custom BraceWrapping: AfterClass: true AfterFunction: true AfterStruct: true BreakBeforeBinaryOperators: NonAssignment BreakConstructorInitializers: AfterColon DerivePointerAlignment: false SortIncludes: false SpacesBeforeTrailingComments: 1 AccessModifierOffset: -4 IndentWidth: 4 ContinuationIndentWidth: 8 ConstructorInitializerIndentWidth: 8 IndentCaseLabels: false # Torvalds dislikes hard column length limits too. # https://lkml.org/lkml/2020/5/29/1038 ColumnLimit: 0 # https://lkml.org/lkml/2020/5/29/1038 ...