-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support JSON5 #538
Comments
It seems like if we enable some features of Jackson parser, we can use most of the features of JSON5. |
Let me handle this issue 🤚. |
It seems like the PR is still stale after 2 years. Is there any initiative to complete this issue? I can try to take over the PR next week if needed. |
Hi! Are you interested in implementing V2 API? 😉 |
Hmm maybe I am missing some context. What changes are planned in V2 API? Also one thing I wonder is whether just supplying a custom |
The current client, which will become the old client once JSON5 support is added, cannot handle a JSON5 file. Because of that, the server cannot just send a JSON5 file to the client. The client will get a parsing exception.
The V1 API will read JSON5 file as JSON file and YAML file as a TEXT file. Meanwhile, the V2 API will read the files as they are. |
https://json5.org/
JSON5 is a superset of JSON which adds some nice-to-haves to JSON, such as comments, trailing commas in arrays, etc. Will be useful for those who write configuration in JSON.
Related: #151
The text was updated successfully, but these errors were encountered: