diff options
author | 2019-01-28 18:20:56 -0800 | |
---|---|---|
committer | 2019-01-28 18:21:15 -0800 | |
commit | a4319f7800e2ac7e84ce0fc1599ca33cecc590c8 (patch) | |
tree | 569526096bc91f27853245bba02a05df42afba96 | |
parent | 0425aa13ec9893b2cf492f2e6bc3e9258664570f (diff) |
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
-rw-r--r-- | scripts/system-clang-format | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/system-clang-format b/scripts/system-clang-format index 55773a29f..349eed5ec 100644 --- a/scripts/system-clang-format +++ b/scripts/system-clang-format @@ -5,6 +5,7 @@ ColumnLimit: 100 CommentPragmas: NOLINT:.* DerivePointerAlignment: false IndentWidth: 4 +AlignAfterOpenBracket: DontAlign ContinuationIndentWidth: 8 PointerAlignment: Left TabWidth: 4 |