123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- ---
- BasedOnStyle: WebKit
- Standard: Cpp11
- ColumnLimit: 120
- CommentPragmas: "^!|^:"
- PointerBindsToType: false
- SpaceAfterTemplateKeyword: false
- BreakBeforeBinaryOperators: NonAssignment
- BreakBeforeBraces: Custom
- BraceWrapping:
- AfterClass: true
- AfterControlStatement: false
- AfterEnum: true
- AfterFunction: true
- AfterNamespace: false
- AfterObjCDeclaration: false
- AfterStruct: true
- AfterUnion: false
- BeforeCatch: false
- BeforeElse: false
- IndentBraces: false
- ConstructorInitializerAllOnOneLineOrOnePerLine: true
- ConstructorInitializerIndentWidth: 4
- ContinuationIndentWidth: 8
- NamespaceIndentation: None
- IndentPPDirectives: AfterHash
- AlignAfterOpenBracket: true
- AlwaysBreakTemplateDeclarations: true
- AllowShortFunctionsOnASingleLine: Inline
- SortIncludes: false
- ForEachMacros: [ for, foreach, Q_FOREACH, BOOST_FOREACH, forever, Q_FOREVER, QBENCHMARK, QBENCHMARK_ONCE ]
- BreakConstructorInitializers: BeforeColon
- AlignConsecutiveAssignments: true
- AlignConsecutiveDeclarations: false
- AlignTrailingComments: true
- FixNamespaceComments: true
- SpacesBeforeTrailingComments: 2
|