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 @@ -7,6 +7,7 @@ A curated list of awesome Java frameworks, libraries and software. Inspired by o
- [Bytecode Manipulation](#bytecode-manipulation)
- [Cluster Management](#cluster-management)
- [Code Analysis](#code-analysis)
- [Code Formatting](#code-formatting)
- [Compiler-compiler](#compiler-compiler)
- [Configuration](#configuration)
- [Constraint Satisfaction Problem Solver](#constraint-satisfaction-problem-solver)
Expand Down Expand Up @@ -90,6 +91,14 @@ A curated list of awesome Java frameworks, libraries and software. Inspired by o
* [PMD](http://pmd.sourceforge.net/) - Source code analysis of bad coding practices.
* [SonarQube](http://www.sonarqube.org/) - Integrates other analysis components via plugins and provides an overview of the metrics over time.

## 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.

## Compiler-compiler

*Frameworks that help to create parsers, interpreters or compilers.*
Expand Down