commit | 6e66f290ec46aae5216306cd09dac5fe64bd9c3f | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Feb 02 05:27:12 2023 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Feb 02 05:27:12 2023 +0000 |
tree | f6f512d88043f81a689e801b14700cadbc4b3ff7 | |
parent | 4a05120b52ed22f2d10c2075e28cc59b6b46465d [diff] | |
parent | cce755ae8fac4e0e3a241e3ec8aa4e4bab685d3e [diff] |
Snap for 9553927 from cce755ae8fac4e0e3a241e3ec8aa4e4bab685d3e to udc-d1-release Change-Id: I2260a59c57c003be57375511a4358f8e28469d5d
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.