1BasedOnStyle: WebKit 2AllowShortIfStatementsOnASingleLine: false 3BreakBeforeBinaryOperators: None 4BreakConstructorInitializers: BeforeColon 5IndentCaseLabels: true 6SortIncludes: true 7SpaceBeforeRangeBasedForLoopColon: false 8SpaceBeforeParens: ControlStatements 9AlignAfterOpenBracket: Align 10NamespaceIndentation: None 11MaxEmptyLinesToKeep: 2 12#AlignConsecutiveAssignments: true 13 14ColumnLimit: 120 15 16# When breaking up parameter/argument lists across multiple lines, 17# put only one per line instead of packing as many as possible. 18BinPackArguments: false 19BinPackParameters: false 20 21# Control of individual brace wrapping cases. 22BreakBeforeBraces: Custom 23BraceWrapping: 24 BeforeCatch: true 25 26# Options for aligning backslashes in escaped newlines. 27AlignEscapedNewlines: Left 28