.clang-format 349 B

123456789101112
  1. # http://clang.llvm.org/docs/ClangFormatStyleOptions.html
  2. BasedOnStyle: Google
  3. Standard: Cpp03
  4. AllowShortFunctionsOnASingleLine: Empty
  5. IncludeBlocks: Preserve
  6. IndentPPDirectives: AfterHash
  7. DerivePointerAlignment: false
  8. # Always break after if to get accurate coverage
  9. AllowShortIfStatementsOnASingleLine: false
  10. AllowShortLoopsOnASingleLine: false