summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuexi Ma <yuexima@google.com>2017-05-05 00:46:40 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-05-05 00:46:42 +0000
commitc2cf5485abb578c87db3f182579427d79be4876c (patch)
treeaf2fac9caf461058f25b3a1352afc15661c4f63d
parent7b68a77a3ae891279f667ef242906d7c105f5d7e (diff)
parent3e89323bdd4e000e711b3ddf8d96c8a42aea5d8e (diff)
downloadperformance-c2cf5485abb578c87db3f182579427d79be4876c.tar.gz
Merge "Add pre-upload style checker for cpp and java code"
-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
+