commit | d19e2b543fe2537e223f10dcbe350f55f952b2da | [log] [tgz] |
---|---|---|
author | Jeremy Bettis <jbettis@google.com> | Mon Dec 09 18:16:54 2024 +0000 |
committer | Android Build Cherrypicker Worker <android-build-cherrypicker-worker@google.com> | Mon Dec 09 18:16:54 2024 +0000 |
tree | d9e1fce6ba732cd30714dbebf520f1f2cb505c90 | |
parent | cf98c774bbb4d744834587b7c6cd3ab2e2bfd708 [diff] |
Add de to import groups For `import de.timroes.axmlrpc` Bug: 379740073 Test: repo upload on ag/30471110 (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:a3482992c451ea8ccf9dedf52ffa289e5957de18) Merged-In: I0d646cd4c68aa6f5bfd3358c3b8c6f7ec4ad861f Change-Id: I0d646cd4c68aa6f5bfd3358c3b8c6f7ec4ad861f
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.