commit | 975e87f6ce5f040055efab082e5c123e69677e71 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 17 07:36:58 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 17 07:36:58 2022 +0000 |
tree | 166094d4ece2cbfb7eb3adbcc2987f0ef0f7bfbf | |
parent | 160f6ef4f0505eabccb002b8e3b3a223e42d285c [diff] | |
parent | b0e92456311a4b4e9e399f02074977adddb75f1e [diff] |
Snap for 8603585 from b0e92456311a4b4e9e399f02074977adddb75f1e to mainline-tzdata3-release Change-Id: I6f53f8b1702ce99bf594ab17535d72082fa721f4
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.