Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ We are evaluating to make this the default, you can provide feedback here in [#1
- [Cloud](#cloud)
- [Code Analysis](#code-analysis)
- [Code Coverage](#code-coverage)
- [Code Formatting](#code-formatting)
- [Code Generators](#code-generators)
- [Compiler-compiler](#compiler-compiler)
- [Computer Vision](#computer-vision)
Expand Down Expand Up @@ -228,6 +229,14 @@ _Frameworks and tools that enable code coverage metrics collection for test suit
- [Delta Coverage](https://github.com/gw-kit/delta-coverage-plugin) - Computes code coverage of new and modified code based on a provided diff, supporting JaCoCo and IntelliJ coverage engines.
- [JaCoCo](https://www.eclemma.org/jacoco/) - Framework that enables collection of code coverage metrics, using both offline and runtime bytecode instrumentation.

### Code Formatting

_Tools that format or restructure Java source code._

- [google-java-format](https://github.com/google/google-java-format) - Reformats Java source code to follow Google Java Style.
- [JHarmonizer](https://github.com/lemon-ant/JHarmonizer) - Safely reorders Java source code with configurable rules and Palantir Java Format.
- [Palantir Java Format](https://github.com/palantir/palantir-java-format) - Formatter based on google-java-format with wider lines and lambda-friendly output.

### Code Generators

_Tools that generate patterns for repetitive code in order to reduce verbosity and error-proneness._
Expand Down