123456789101112131415161718192021222324252627282930 |
- BasedOnStyle: GNU
- SortIncludes: Never
- ColumnLimit: 100
- IndentWidth: 4
- AlignConsecutiveMacros: AcrossEmptyLines
- AlignOperands: false # ?
- AttributeMacros:
- - G_GNUC_PRINTF
- BreakBeforeBraces: Custom
- BraceWrapping:
- AfterCaseLabel: true
- AfterClass: true
- AfterControlStatement: Always
- AfterEnum: true
- AfterExternBlock: true
- AfterFunction: true
- AfterNamespace: true
- AfterObjCDeclaration: true
- AfterStruct: true
- AfterUnion: true
- BeforeCatch: true
- BeforeElse: true
- BeforeLambdaBody: false
- BeforeWhile: true
- IndentBraces: false
- SplitEmptyFunction: true
- SplitEmptyRecord: true
- SplitEmptyNamespace: true
- PenaltyBreakAssignment: 200
- SpaceAfterCStyleCast: true
|