.clang-format (491B)
1 --- 2 Language: Cpp 3 BasedOnStyle: LLVM 4 AlignAfterOpenBracket: DontAlign 5 AlignConsecutiveAssignments: true 6 AlignEscapedNewlines: DontAlign 7 AlwaysBreakBeforeMultilineStrings: true 8 AlwaysBreakTemplateDeclarations: false 9 AllowAllParametersOfDeclarationOnNextLine: false 10 AllowShortFunctionsOnASingleLine: false 11 BreakBeforeBraces: Attach 12 IndentWidth: 4 13 KeepEmptyLinesAtTheStartOfBlocks: false 14 TabWidth: 4 15 UseTab: ForContinuationAndIndentation 16 ColumnLimit: 1000 17 ...