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
diff --git a/scripts/system-clang-format b/scripts/system-clang-format
index 55773a2..349eed5 100644
--- a/scripts/system-clang-format
+++ b/scripts/system-clang-format
@@ -5,6 +5,7 @@
 CommentPragmas: NOLINT:.*
 DerivePointerAlignment: false
 IndentWidth: 4
+AlignAfterOpenBracket: DontAlign
 ContinuationIndentWidth: 8
 PointerAlignment: Left
 TabWidth: 4