summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuexi Ma <yuexima@google.com>2017-05-01 17:18:00 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-05-01 17:18:00 +0000
commit75bf1258d3015318b1a436237aded4b0ba4b8851 (patch)
tree5a0beeb05368ec10d3981695e0787b183c828921
parenta35b6b0eba08a6485311ad24a399d49547c7661d (diff)
parent6947f8a084bf9dc6304efb638aaa5737e82989c1 (diff)
downloadhal-trace-75bf1258d3015318b1a436237aded4b0ba4b8851.tar.gz
Merge "Add pre-upload style checker for cpp and java code"
am: 6947f8a084 Change-Id: I269c6d6bf303e48c9c025d71fd266718c81b5bc6
-rw-r--r--.clang-format13
-rw-r--r--PREUPLOAD.cfg6
2 files changed, 19 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format
new file mode 100644
index 0000000..6027082
--- /dev/null
+++ b/.clang-format
@@ -0,0 +1,13 @@
+---
+Language: Cpp
+BasedOnStyle: Google
+ColumnLimit: 80
+IndentWidth: 2
+ContinuationIndentWidth: 4
+---
+Language: Java
+BasedOnStyle: Google
+ColumnLimit: 100
+IndentWidth: 4
+ContinuationIndentWidth: 8
+...
diff --git a/PREUPLOAD.cfg b/PREUPLOAD.cfg
new file mode 100644
index 0000000..6be6e5f
--- /dev/null
+++ b/PREUPLOAD.cfg
@@ -0,0 +1,6 @@
+[Builtin Hooks]
+clang_format = true
+
+[Builtin Hooks Options]
+clang_format = --commit ${PREUPLOAD_COMMIT} --style file --extensions c,h,cc,cpp,java
+