commit | 4cdc6738c488f3e81f3d49f7b7ae4e04dc4842f9 | [log] [tgz] |
---|---|---|
author | Steven Laver <lavers@google.com> | Tue Aug 18 11:40:46 2020 -0700 |
committer | Steven Laver <lavers@google.com> | Tue Aug 18 11:40:46 2020 -0700 |
tree | c23cde41453e9697481fe3452b8d791da9bfba38 | |
parent | bc98beab46ea02bda7c8ddb5be03bbff857ec190 [diff] | |
parent | 5eec6cd1c1d127d3078c77ac92aebfcf632b30f2 [diff] |
Merge RP1A.200720.012 Change-Id: I1aa153cfc8353e25e729d2885160e2ea0b63e5d7
Checkstyle is used by developers to validate Java code style and formatting, and can be run as part of the pre-upload hooks.
It can be invoked in two ways.
checkstyle.py -f FILE [FILE ...]
checkstyle.py
A development tool to help programmers write Java code that adheres to a coding standard.
Git-lint is a tool to run lint checks on only files changed in the latest commit.
To run checkstyle as part of the pre-upload hooks, add the following line to your PREUPLOAD.cfg
:
checkstyle_hook = ${REPO_ROOT}/prebuilts/checkstyle/checkstyle.py --sha ${PREUPLOAD_COMMIT}
Note that checkstyle does not always agree with clang-format, and so it's best to only have one enabled for Java.
In .clang-format
add the following to disable format checking and correcting for Java:
--- Language: Java DisableFormat: true SortIncludes: false ---
In some versions of clang-format, DisableFormat
doesn't stop the sorting of includes. So to fully disable clang-format from doing anything for Java files, both options are needed.