Add Code Formatting section to README#11
Open
AntonLem wants to merge 1419 commits into
Open
Conversation
Add Chart-FX scientific charting library
* Added Github site for Java Evolved * moved java evolved to miscelaneous Removed duplicate entry for 'Java Evolved' from the tools list. * Add a blank line before 'Contributing' section * fix: rewrite description to be concise and consistent with list style --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
ArcadeDB is an open-source (Apache 2.0) multi-model database written in Java 21. It supports SQL, Cypher (OpenCypher), Gremlin, GraphQL, and MongoDB query languages, plus Neo4j Bolt, PostgreSQL, MongoDB, and Redis wire protocols. It can run embedded or client-server.
* Add java-util to Utility section * Update java-util description with demand-ranked features * Swap LRUCache for MultiKeyMap in java-util description
* Add input4j to game development frameworks list * fix: add missing period --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add Nyagram to Miscellaneous * fix: move to Miscellaneous section, remove 'Modern' from description --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add java-refined to Utility section java-refined provides refinement types for Java 8+ — types constrained by predicates (e.g. PositiveInt, NonBlankString, EmailString). It ships 204 ready-to-use refined types with zero runtime dependencies, 100% test coverage, and 95%+ mutation testing scores. GitHub: https://github.com/JunggiKim/java-refined Maven Central: io.github.junggikim:java-refined * fix: merge two sentences into one --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add Spring CRUD Generator to Code Generators section * fix: remove promotional qualifier from description --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add a link to ClearConfig for Java * fix: remove subjective adjectives from description --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add ReleaseRun Maven/Gradle dependency health checker * fix: replace em dashes with standard separator, add period --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Update README.md * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Fix link for Jctx in README.md * Update README.md --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add AliveJTUI to Text-Based User Interfaces * fix: merge two sentences into one --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add JamJet to Artificial Intelligence section * fix: trim to one sentence, remove promotional language --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Added Certificate Ripper * fix: expand brief description --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add Kensa to the list of BDD frameworks * fix: use standard separator and simplify description --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add Rollgate to Miscellaneous * fix: remove parenthetical comparison from description --------- Co-authored-by: Andreas Kull <akullpp@gmail.com>
* Add Open J Proxy to the Database section Agent-Logs-Url: https://github.com/rrobetti/awesome-java/sessions/7120ce66-b4b4-4287-a140-d868f18bf930 Co-authored-by: rrobetti <7221783+rrobetti@users.noreply.github.com> * Update README to remove obsolete library entries Removed entries for Spring Data JPA MongoDB Expressions, Trino, and QueryStream from the list of libraries. * Remove redundant lines from README.md * Add commercial.svg link to README --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: rrobetti <7221783+rrobetti@users.noreply.github.com>
…-to-readme Add 'Code Formatting' section to README
Removed extra blank lines in the README file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a new
Code Formattingsection to the list.The repository already has a
Code Analysissection, but there is no dedicated place for Java source formatting or source restructuring tools. This new section adds three Java tools in that area:google-java-formatJHarmonizerPalantir Java FormatRationale
Java formatting and source restructuring tools are commonly used as part of code quality workflows, but they are distinct from static analysis tools. They focus on formatting, source layout, member ordering, or automated source cleanup rather than reporting code issues only.
The new section is placed after
Code Analysisbecause these tools are closely related to code quality workflows, but serve a different purpose.