Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request adds Java language support by defining a new language object and registering it in the central languages list. The feedback suggests reordering the language array alphabetically and adding trailing commas to improve code maintainability and diff readability.
Comment on lines
+9
to
+10
| pythonLanguage, | ||
| javaLanguage |
Contributor
There was a problem hiding this comment.
To maintain consistency with the import order and improve maintainability, the languages in the languages array should be kept in alphabetical order. Additionally, adding a trailing comma is a best practice in TypeScript to ensure cleaner diffs when adding new elements in the future.
Suggested change
| pythonLanguage, | |
| javaLanguage | |
| javaLanguage, | |
| pythonLanguage, |
martin-henz
requested changes
Apr 1, 2026
martin-henz
left a comment
Member
There was a problem hiding this comment.
The language evaluator url is missing.
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.
Adds Java as one of the languages in the language directory.