| 123456789101112131415161718192021 | 
							- ---
 
- # This configuration requires clang-format version 6.0 exactly.
 
- BasedOnStyle: Mozilla
 
- AlignOperands: false
 
- AllowShortFunctionsOnASingleLine: InlineOnly
 
- AlwaysBreakAfterDefinitionReturnType: None
 
- AlwaysBreakAfterReturnType: None
 
- BinPackArguments: true
 
- BinPackParameters: true
 
- BraceWrapping:
 
-   AfterClass:      true
 
-   AfterEnum:       true
 
-   AfterFunction:   true
 
-   AfterStruct:     true
 
-   AfterUnion:      true
 
- BreakBeforeBraces: Custom
 
- ColumnLimit: 79
 
- IndentPPDirectives: AfterHash
 
- SortUsingDeclarations: false
 
- SpaceAfterTemplateKeyword: true
 
- ...
 
 
  |