12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- ---
- BasedOnStyle: WebKit
- AlignAfterOpenBracket: Align
- AlignConsecutiveAssignments: false
- AlignConsecutiveDeclarations: false
- AlignEscapedNewlines: Left
- AlignOperands: true
- AlignTrailingComments: true
- AllowAllParametersOfDeclarationOnNextLine: false
- AllowShortBlocksOnASingleLine: false
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: None
- AllowShortIfStatementsOnASingleLine: Never
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakAfterDefinitionReturnType: None
- AlwaysBreakAfterReturnType: None
- AlwaysBreakBeforeMultilineStrings: true
- AlwaysBreakTemplateDeclarations: Yes
- BinPackArguments: true
- BinPackParameters: true
- BreakAfterJavaFieldAnnotations: true
- BreakBeforeBinaryOperators: None
- BreakBeforeBraces: Custom
- BraceWrapping:
- AfterClass: false
- AfterControlStatement: false
- AfterEnum: false
- AfterFunction: false
- AfterNamespace: false
- AfterObjCDeclaration: false
- AfterStruct: false
- AfterUnion: false
- AfterExternBlock: false
- BeforeCatch: false
- BeforeElse: false
- IndentBraces: false
- SplitEmptyFunction: false
- SplitEmptyRecord: false
- SplitEmptyNamespace: false
- BreakBeforeInheritanceComma: false
- BreakBeforeTernaryOperators: false
- BreakConstructorInitializers: AfterColon
- BreakStringLiterals: true
- ColumnLimit: 120
- CompactNamespaces: false
- ConstructorInitializerAllOnOneLineOrOnePerLine: false
- ConstructorInitializerIndentWidth: 4
- ContinuationIndentWidth: 4
- Cpp11BracedListStyle: true
- DerivePointerAlignment: true
- DisableFormat: false
- ExperimentalAutoDetectBinPacking: true
- FixNamespaceComments: true
- ForEachMacros: ['BOOST_FOREACH']
- IncludeBlocks: Regroup
- IncludeCategories:
- - Regex: '^"(<)/'
- Priority: 1
- - Regex: '^(<(boost)/)'
- Priority: 2
- - Regex: '^(<(nil\/crypto3)/)'
- Priority: 3
- - Regex: '.*'
- Priority: 4
- IndentCaseLabels: true
- IndentPPDirectives: None
- IndentWidth: 4
- IndentWrappedFunctionNames: true
- KeepEmptyLinesAtTheStartOfBlocks: true
- Language: Cpp
- NamespaceIndentation: All
- ObjCBlockIndentWidth: 4
- ObjCSpaceAfterProperty: true
- ObjCSpaceBeforeProtocolList: true
- PointerAlignment: Right
- ReflowComments: true
- SortIncludes: false
- SortUsingDeclarations: true
- SpaceAfterCStyleCast: false
- SpaceAfterTemplateKeyword: false
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeParens: ControlStatements
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 4
- SpacesInAngles: false
- SpacesInCStyleCastParentheses: false
- SpacesInContainerLiterals: true
- SpacesInParentheses: false
- SpacesInSquareBrackets: false
- Standard: Cpp11
- TabWidth: 4
- UseTab: Never
- ...
|