.clang-format 648 B

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