fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.4 KiB
48 lines
1.4 KiB
11 years ago
|
# Complete list of style options can be found at:
|
||
|
# http://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
||
|
---
|
||
|
BasedOnStyle: Google
|
||
|
AccessModifierOffset: -1
|
||
|
ConstructorInitializerIndentWidth: 4
|
||
|
AlignEscapedNewlinesLeft: true
|
||
|
AlignTrailingComments: true
|
||
|
AllowAllParametersOfDeclarationOnNextLine: true
|
||
|
AllowShortIfStatementsOnASingleLine: false
|
||
|
AllowShortLoopsOnASingleLine: false
|
||
|
AlwaysBreakTemplateDeclarations: true
|
||
|
AlwaysBreakBeforeMultilineStrings: true
|
||
|
BreakBeforeBinaryOperators: false
|
||
|
BreakConstructorInitializersBeforeComma: false
|
||
|
BinPackParameters: false
|
||
|
ColumnLimit: 80
|
||
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
||
|
DerivePointerBinding: true
|
||
|
ExperimentalAutoDetectBinPacking: true
|
||
|
IndentCaseLabels: false
|
||
|
MaxEmptyLinesToKeep: 1
|
||
|
NamespaceIndentation: None
|
||
|
ObjCSpaceBeforeProtocolList: false
|
||
|
PenaltyBreakBeforeFirstCallParameter: 10
|
||
|
PenaltyBreakComment: 60
|
||
|
PenaltyBreakString: 1000
|
||
|
PenaltyBreakFirstLessLess: 20
|
||
|
PenaltyExcessCharacter: 1000000
|
||
|
PenaltyReturnTypeOnItsOwnLine: 200
|
||
|
PointerBindsToType: true
|
||
|
SpacesBeforeTrailingComments: 2
|
||
|
Cpp11BracedListStyle: true
|
||
|
Standard: Cpp11
|
||
|
IndentWidth: 2
|
||
|
TabWidth: 8
|
||
|
UseTab: Never
|
||
|
BreakBeforeBraces: Attach
|
||
|
IndentFunctionDeclarationAfterType: false
|
||
|
SpacesInParentheses: false
|
||
|
SpacesInAngles: false
|
||
|
SpaceInEmptyParentheses: false
|
||
|
SpacesInCStyleCastParentheses: false
|
||
|
SpaceAfterControlStatementKeyword: true
|
||
|
SpaceBeforeAssignmentOperators: true
|
||
|
ContinuationIndentWidth: 4
|
||
|
...
|