.clang-format (766B)
1 UseTab: Never 2 IndentWidth: 4 3 Language : Cpp 4 BreakBeforeBraces: Allman 5 MaxEmptyLinesToKeep: 1 6 IndentCaseLabels: false 7 NamespaceIndentation: None 8 AccessModifierOffset: -4 9 SpacesInParentheses: false 10 SpaceInEmptyParentheses: false 11 SpacesInCStyleCastParentheses: false 12 PointerAlignment: Left 13 Cpp11BracedListStyle: false 14 AllowShortIfStatementsOnASingleLine: false 15 AllowShortFunctionsOnASingleLine : true 16 AlignOperands: true 17 Standard: c++17 18 AlignTrailingComments : false 19 ConstructorInitializerAllOnOneLineOrOnePerLine : false 20 ColumnLimit: 110 21 BinPackParameters : true 22 BinPackArguments : true 23 AlwaysBreakTemplateDeclarations : true 24 AlignConsecutiveAssignments : true 25 PenaltyReturnTypeOnItsOwnLine: 50000 26 CommentPragmas: '^ >' 27 IndentExternBlock: NoIndent 28 SortIncludes: false