You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2019/03/12 12:45:39 UTC

[hbase] 51/133: HBASE-17395 [C++] Use custom line wrapping in formatting

This is an automated email from the ASF dual-hosted git repository.

zghao pushed a commit to branch HBASE-14850
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit f547671f40694d2b319de202c08bd4d32c18bcfc
Author: Sudeep Sunthankar <su...@hashmapinc.com>
AuthorDate: Fri Dec 30 10:03:56 2016 +1100

    HBASE-17395 [C++] Use custom line wrapping in formatting
    
    Signed-off-by: Enis Soztutar <en...@apache.org>
---
 hbase-native-client/bin/format-code.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hbase-native-client/bin/format-code.sh b/hbase-native-client/bin/format-code.sh
index 55fe69e..6796acd 100755
--- a/hbase-native-client/bin/format-code.sh
+++ b/hbase-native-client/bin/format-code.sh
@@ -19,5 +19,5 @@ set -euo pipefail
 IFS=$'\n\t'
 
 
-find core connection serde utils test-util -name "*.h" -or -name "*.cc" | xargs -P8 clang-format -i --style=Google
-find core connection serde utils third-party -name "BUCK" | xargs -P8 yapf -i --style=google
+find core connection serde utils test-util security -name "*.h" -or -name "*.cc" | xargs -P8 clang-format -i --style=='{BasedOnStyle: Google, ColumnLimit: 100}'
+find core connection serde utils third-party security -name "BUCK" | xargs -P8 yapf -i --style=google