system-clang-format: DontAlign

AlignAfterOpenBracket: DontAlign

The main consideration is this:

if (foo && ....
    foo) {
    // code

->

if (foo && ....
        foo) {
    // code

Change-Id: Ife0073c8544b9554df2eb54e10dc2e7611631299
Fixes: 122835115
Test: manual
This commit is contained in:
Steven Moreland
2019-01-28 18:20:56 -08:00
parent 0425aa13ec
commit a4319f7800

View File

@@ -5,6 +5,7 @@ ColumnLimit: 100
CommentPragmas: NOLINT:.*
DerivePointerAlignment: false
IndentWidth: 4
AlignAfterOpenBracket: DontAlign
ContinuationIndentWidth: 8
PointerAlignment: Left
TabWidth: 4