You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
551 B

  1. ---
  2. # This configuration requires clang-format version 6.0 exactly.
  3. BasedOnStyle: Mozilla
  4. AlignOperands: false
  5. AllowShortFunctionsOnASingleLine: InlineOnly
  6. AlwaysBreakAfterDefinitionReturnType: None
  7. AlwaysBreakAfterReturnType: None
  8. BinPackArguments: true
  9. BinPackParameters: true
  10. BraceWrapping:
  11. AfterClass: true
  12. AfterEnum: true
  13. AfterFunction: true
  14. AfterStruct: true
  15. AfterUnion: true
  16. BreakBeforeBraces: Custom
  17. ColumnLimit: 79
  18. IndentPPDirectives: AfterHash
  19. SortUsingDeclarations: false
  20. SpaceAfterTemplateKeyword: true
  21. ...