.clang-format 555 B

123456789101112131415161718192021
  1. BasedOnStyle: Google
  2. Language: Cpp
  3. ColumnLimit: 80
  4. IndentWidth: 2
  5. TabWidth: 2
  6. UseTab: Never
  7. IndentCaseLabels: true
  8. BreakBeforeBraces: Linux
  9. AlignEscapedNewlinesLeft: false
  10. AllowShortFunctionsOnASingleLine: false
  11. AlignTrailingComments: true
  12. SpacesBeforeTrailingComments: 2
  13. PenaltyReturnTypeOnItsOwnLine: 200
  14. AllowAllParametersOfDeclarationOnNextLine: false
  15. AllowShortIfStatementsOnASingleLine: false
  16. AllowShortLoopsOnASingleLine: false
  17. BinPackParameters: false
  18. BreakBeforeBinaryOperators: true
  19. BreakBeforeTernaryOperators: true
  20. ContinuationIndentWidth: 4