.clang-format 486 B

12345678910111213141516171819
  1. BasedOnStyle: Google
  2. # Modifications for Tesseract.
  3. # Only merge empty functions.
  4. AllowShortFunctionsOnASingleLine: Empty
  5. # Do not allow short if statements.
  6. AllowShortIfStatementsOnASingleLine: false
  7. IndentPPDirectives: AfterHash
  8. # Default style for some settings.
  9. AccessModifierOffset: -2
  10. AllowShortLoopsOnASingleLine: false
  11. # Enforce always the same pointer alignment.
  12. DerivePointerAlignment: false
  13. IncludeBlocks: Preserve
  14. PointerAlignment: Right
  15. SpacesBeforeTrailingComments: 1