7affc5c3f8
Re-run clang-format to pick up some missed changes over the past few CLs. Also update the .clang-format file to break after ternary operator. Change-Id: Ia4ba4e58362c2dbe36aeb33894f0411af33ef17d
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
---
|
|
Language: Cpp
|
|
# BasedOnStyle: Google
|
|
AccessModifierOffset: -1
|
|
ConstructorInitializerIndentWidth: 4
|
|
AlignEscapedNewlinesLeft: true
|
|
AlignTrailingComments: false
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortLoopsOnASingleLine: false
|
|
AllowShortFunctionsOnASingleLine: true
|
|
AlwaysBreakTemplateDeclarations: true
|
|
AlwaysBreakBeforeMultilineStrings: true
|
|
BreakBeforeBinaryOperators: false
|
|
BreakBeforeTernaryOperators: false
|
|
BreakConstructorInitializersBeforeComma: false
|
|
BinPackParameters: true
|
|
ColumnLimit: 80
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
DerivePointerBinding: true
|
|
ExperimentalAutoDetectBinPacking: false
|
|
IndentCaseLabels: true
|
|
MaxEmptyLinesToKeep: 1
|
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
|
NamespaceIndentation: None
|
|
ObjCSpaceAfterProperty: false
|
|
ObjCSpaceBeforeProtocolList: false
|
|
PenaltyBreakBeforeFirstCallParameter: 1
|
|
PenaltyBreakComment: 300
|
|
PenaltyBreakString: 1000
|
|
PenaltyBreakFirstLessLess: 120
|
|
PenaltyExcessCharacter: 1000000
|
|
PenaltyReturnTypeOnItsOwnLine: 200
|
|
PointerBindsToType: true
|
|
SpacesBeforeTrailingComments: 2
|
|
Cpp11BracedListStyle: true
|
|
Standard: Auto
|
|
IndentWidth: 2
|
|
TabWidth: 8
|
|
UseTab: Never
|
|
BreakBeforeBraces: Attach
|
|
IndentFunctionDeclarationAfterType: true
|
|
SpacesInParentheses: false
|
|
SpacesInAngles: false
|
|
SpaceInEmptyParentheses: false
|
|
SpacesInCStyleCastParentheses: false
|
|
SpacesInContainerLiterals: true
|
|
SpaceBeforeAssignmentOperators: true
|
|
ContinuationIndentWidth: 4
|
|
CommentPragmas: '^ IWYU pragma:'
|
|
SpaceBeforeParens: ControlStatements
|
|
...
|
|
|