We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Description: The following do not format properly in VSCode: artemis:Producer prod = new({host:"localhost", port:61616}, "example");
artemis:Producer prod = new({host:"localhost", port:61616}, "example");
Expected is as follows: artemis:Producer prod = new({host: "localhost", port: 61616}, "example");
artemis:Producer prod = new({host: "localhost", port: 61616}, "example");
The JSON formatting seems to work only if it is an assignment as follows: json val = {host: "localhost", port: 61616};
json val = {host: "localhost", port: 61616};
Steps to reproduce: Try formatting a JSON/record expression when it is not in an assignment statement.
Affected Versions: 0.991.0
OS, DB, other environment details and versions: Ubuntu 19.04
Related Issues (optional): N/A
The text was updated successfully, but these errors were encountered:
This issue is a known issue #13794 and we are working on fixing this.
Sorry, something went wrong.
The issue is fixed with #16003 Hence closing this issue.
NipunaMarcus
Successfully merging a pull request may close this issue.
Description:
The following do not format properly in VSCode:
artemis:Producer prod = new({host:"localhost", port:61616}, "example");
Expected is as follows:
artemis:Producer prod = new({host: "localhost", port: 61616}, "example");
The JSON formatting seems to work only if it is an assignment as follows:
json val = {host: "localhost", port: 61616};
Steps to reproduce:
Try formatting a JSON/record expression when it is not in an assignment statement.
Affected Versions:
0.991.0
OS, DB, other environment details and versions:
Ubuntu 19.04
Related Issues (optional):
N/A
The text was updated successfully, but these errors were encountered: