commit | 8531c66bf9a4439e7050dae3d447d42ae0b383e3 | [log] [tgz] |
---|---|---|
author | David Saff <[email protected]> | Tue Dec 10 20:11:21 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Dec 10 20:11:21 2024 +0000 |
tree | de5c03188e48e986db481206ba7b4774ea37c62f | |
parent | 5656e34e01814da69263ec0e9d99d19d352a060e [diff] | |
parent | 5b8d0f2d74b08567d6b33d70cc4389d57e9b18c1 [diff] |
Add `platform` to checkstyle import order am: 5b8d0f2d74 Original change: https://android-review.googlesource.com/c/platform/prebuilts/checkstyle/+/3402339 Change-Id: I0ef7c4d88addc06cfb720059157eec0afeec9906 Signed-off-by: Automerger Merge Worker <[email protected]>
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.