commit | c7b396a0b690eb8d8b492773562203d8dae1fe32 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Mon Mar 14 22:39:27 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Mon Mar 14 22:39:27 2022 +0000 |
tree | ba998044a2b63dd8119c505e0870f764c35ede8e | |
parent | af393dc0eca4860242a58aa3c5b7f688d8c93163 [diff] | |
parent | 0569da6981d542d02963d36d70f7c281c161f355 [diff] |
Snap for 8298627 from 0569da6981d542d02963d36d70f7c281c161f355 to mainline-adbd-release Change-Id: I2449be45477a8697aff07ed26dd565cd44dd7be1
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.