.clang-format 577 B

123456789101112131415161718192021
  1. BasedOnStyle: LLVM
  2. AlignAfterOpenBracket: DontAlign
  3. AlignOperands: DontAlign
  4. AlignTrailingComments:
  5. Kind: Never
  6. OverEmptyLines: 0
  7. AllowAllParametersOfDeclarationOnNextLine: false
  8. AllowShortFunctionsOnASingleLine: Inline
  9. BreakConstructorInitializers: AfterColon
  10. ColumnLimit: 0
  11. ContinuationIndentWidth: 8
  12. IndentCaseLabels: true
  13. IndentWidth: 4
  14. InsertBraces: true
  15. KeepEmptyLinesAtTheStartOfBlocks: false
  16. RemoveSemicolon: true
  17. SpacesInLineCommentPrefix:
  18. Minimum: 0 # We want a minimum of 1 for comments, but allow 0 for disabled code.
  19. Maximum: -1
  20. TabWidth: 4
  21. UseTab: Always