.clang-format 396 B

1234567891011121314
  1. # Run manually to reformat a file:
  2. # clang-format -i --style=file <file>
  3. Language: Cpp
  4. BasedOnStyle: Google
  5. IndentPPDirectives: AfterHash
  6. IndentCaseLabels: false
  7. AlwaysBreakTemplateDeclarations: false
  8. DerivePointerAlignment: false
  9. AllowShortCaseLabelsOnASingleLine: true
  10. AlignConsecutiveShortCaseStatements:
  11. Enabled: true
  12. AcrossEmptyLines: true
  13. AcrossComments: true
  14. AlignCaseColons: false