commit | 00a295f6b538e28c7cabc8325c2759fe3cbd833b | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Wed Nov 01 16:26:29 2023 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Wed Nov 01 16:26:29 2023 +0000 |
tree | 553e7b88ace45b163b9ea300143c04c17e273021 | |
parent | 385a901dbcaf893bf8429df931ddcdfc210ace5e [diff] | |
parent | c87dfb8f95d182daebdfeda7275a4debdd4b03a7 [diff] |
Snap for 11035523 from c87dfb8f95d182daebdfeda7275a4debdd4b03a7 to mainline-extservices-release Change-Id: Ib80894f149bb8d0b52a02277ed2156b8a72c5d7a
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.