From 7201b9254612e399abded5a618221d95b970fd96 Mon Sep 17 00:00:00 2001 From: Sudeep Sunthankar Date: Fri, 30 Dec 2016 10:03:56 +1100 Subject: [PATCH] Change line wrapping to 100 columns diff --git a/hbase-native-client/bin/format-code.sh b/hbase-native-client/bin/format-code.sh index 55fe69e..91d6440 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 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 -name "BUCK" | xargs -P8 yapf -i --style=google +find core connection serde utils third-party security -name "BUCK" | xargs -P8 yapf -i --style=google -- 1.8.3.1