summaryrefslogtreecommitdiff
path: root/PREUPLOAD.cfg
blob: 5dfd59c030ad44a0911c04b7884effc6eec05249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[Hook Scripts]
# Run mypy on all python scripts that exist in the tree. This will only generate
# errors and warnings related to the CLs being uploaded as long as all other
# scripts are already linter clean. However, mypy warnings will be repeated when
# uploading multiple CLs. This is a known limitation which also affects pylint.
# https://android.googlesource.com/platform/tools/repohooks/#todo_limitations.
#
# We cannot use `find ... -execdir mypy {} +` directly since find does not
# propagate status codes from the -execXXX family of arguments so we use xargs
# instead. We also cannot use pipes directly in a hook script so we wrap
# everything inside a shell command (`sh -c`).
mypy = sh -c "find . -name '*.py' | xargs -I{} mypy {}"

[Builtin Hooks]
clang_format = true
commit_msg_bug_field = true
commit_msg_changeid_field = true
pylint3 = true

[Builtin Hooks Options]
clang_format = --commit ${PREUPLOAD_COMMIT} --style file --extensions c,h,cc,cpp