1--- 2BasedOnStyle: LLVM 3Language: Cpp 4IndentWidth: 8 5UseTab: Always 6BreakBeforeBraces: Linux 7AlwaysBreakBeforeMultilineStrings: true 8AllowShortIfStatementsOnASingleLine: false 9AllowShortLoopsOnASingleLine: false 10AllowShortFunctionsOnASingleLine: false 11IndentCaseLabels: false 12AlignEscapedNewlinesLeft: false 13AlignTrailingComments: true 14AllowAllParametersOfDeclarationOnNextLine: false 15AlignAfterOpenBracket: true 16SpaceAfterCStyleCast: false 17MaxEmptyLinesToKeep: 2 18BreakBeforeBinaryOperators: NonAssignment 19BreakStringLiterals: false 20SortIncludes: false 21ContinuationIndentWidth: 8 22 23