David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
77897e4
Branches
Tags
c++11
main
start
testcode.git
.clang-format
Minor comment tweak on line length.
dblume
commited
77897e4
at 2023-08-18 09:55:28
.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 ...