You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project is excellent, and it would be great if it could be adapted to other languages. If i want to modify the project yourself to make it compatible with other languages, what are the main modifications i need to make?
The text was updated successfully, but these errors were encountered:
Thanks! The code is parsed to "CodeBlocks" using Treesitter, so the logic and prompts are agnostic to the programming language being used. What's needed is to add a new parser for the language and a Treesitter query file with definitions.
You would also want to write an appropriate Verifier -- for Python it's using the PylintVerifier class which leverages Pylint, and for Java there's a MavenVerifier. You could fairly easily wrap a linter / checker for your chosen language by following those examples.
This project is excellent, and it would be great if it could be adapted to other languages. If i want to modify the project yourself to make it compatible with other languages, what are the main modifications i need to make?
The text was updated successfully, but these errors were encountered: