123456789101112131415161718192021 |
- BasedOnStyle: LLVM
- AlignAfterOpenBracket: DontAlign
- AlignOperands: DontAlign
- AlignTrailingComments:
- Kind: Never
- OverEmptyLines: 0
- AllowAllParametersOfDeclarationOnNextLine: false
- AllowShortFunctionsOnASingleLine: Inline
- BreakConstructorInitializers: AfterColon
- ColumnLimit: 0
- ContinuationIndentWidth: 8
- IndentCaseLabels: true
- IndentWidth: 4
- InsertBraces: true
- KeepEmptyLinesAtTheStartOfBlocks: false
- RemoveSemicolon: true
- SpacesInLineCommentPrefix:
- Minimum: 0 # We want a minimum of 1 for comments, but allow 0 for disabled code.
- Maximum: -1
- TabWidth: 4
- UseTab: Always
|