Rebecca Turner
2a98ba8b97
The big ones here are `trim-trailing-whitespace` and `end-of-file-fixer`
(which makes sure that every file ends with exactly one newline
character).
Change-Id: Idca73b640883188f068f9903e013cf0d82aa1123
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
---
|
|
BasedOnStyle: LLVM
|
|
AccessModifierOffset: -4
|
|
AlignAfterOpenBracket: BlockIndent
|
|
AlignEscapedNewlines: Left
|
|
AlignOperands: DontAlign
|
|
AllowShortBlocksOnASingleLine: Always
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
AllowShortIfStatementsOnASingleLine: WithoutElse
|
|
AlwaysBreakBeforeMultilineStrings: true
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
BitFieldColonSpacing: None
|
|
BraceWrapping:
|
|
AfterCaseLabel: false
|
|
AfterClass: true
|
|
AfterControlStatement: MultiLine
|
|
AfterEnum: false
|
|
AfterFunction: true
|
|
AfterNamespace: false
|
|
AfterObjCDeclaration: false
|
|
AfterStruct: true
|
|
AfterUnion: true
|
|
AfterExternBlock: false
|
|
BeforeCatch: false
|
|
BeforeElse: false
|
|
BeforeLambdaBody: false
|
|
BeforeWhile: false
|
|
IndentBraces: false
|
|
SplitEmptyFunction: true
|
|
SplitEmptyRecord: false
|
|
SplitEmptyNamespace: true
|
|
BreakAfterAttributes: Always
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
BreakBeforeBraces: Custom
|
|
BreakConstructorInitializers: BeforeComma
|
|
ColumnLimit: 100
|
|
EmptyLineAfterAccessModifier: Leave
|
|
EmptyLineBeforeAccessModifier: Leave
|
|
FixNamespaceComments: false
|
|
IndentWidth: 4
|
|
InsertBraces: true
|
|
InsertTrailingCommas: Wrapped
|
|
LambdaBodyIndentation: Signature
|
|
PackConstructorInitializers: CurrentLine
|
|
PointerAlignment: Middle
|
|
SortIncludes: Never
|
|
SpaceAfterCStyleCast: true
|
|
SpaceAfterTemplateKeyword: false
|