commit | 833b585503ee9403f4358e05a4143770c5ed0464 | [log] [tgz] |
---|---|---|
author | Luca Stefani <luca.stefani.ge1@gmail.com> | Wed Feb 01 17:40:36 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Feb 01 17:40:36 2023 +0000 |
tree | 166094d4ece2cbfb7eb3adbcc2987f0ef0f7bfbf | |
parent | fd988c15302ded7109388dd80456ae282ccaef82 [diff] | |
parent | e90d24ee812c1689c08f38f3aad0697aedf585f1 [diff] |
[automerger skipped] gitlint: Fix string concatenation am: 06cc0c6dc1 am: e32591e065 -s ours am: 38344443b1 -s ours am: f49628401d -s ours am: 7784c94249 -s ours am: 708403e15a -s ours am: e90d24ee81 -s ours am skip reason: Merged-In Iaa0b2e047a7f859831b203533c96071d819ef3d1 with SHA-1 9f2a68c00b is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/prebuilts/checkstyle/+/21147699 Change-Id: I68b6bbbc5457aa3f21cf71616f19b7d5cb9e89bc Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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.