commit | cf98c774bbb4d744834587b7c6cd3ab2e2bfd708 | [log] [tgz] |
---|---|---|
author | Makoto Onuki <[email protected]> | Tue May 21 23:34:36 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue May 21 23:34:36 2024 +0000 |
tree | c56089069e4000e07c279b9c941d51ff7ec5645f | |
parent | c354fa6c87fb8d4b9f1a90d4dd31a2505cf08c33 [diff] | |
parent | 42ef477f7b16e8083a7316df70cae946e731b8f5 [diff] |
Allow "$ravenwood" to be a method name suffix am: 7071470e06 am: 42ef477f7b Original change: https://android-review.googlesource.com/c/platform/prebuilts/checkstyle/+/3093198 Change-Id: I160481ffaf25eea78be88c95df86d27b45712157 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.