Is there a way to not get a truncated error message?

On the editor I know there is a way to override the linter and change the diagnostic error message when validating JSON. My question is, is there a way that error message does not appear truncated? The error messages will often use ellipses (“…”) to shorten a line where the error is found but some of our users find it confusing and would like to see the whole line. I have a feeling the answer is probably “No” but thought I would still ask. I tried looking in the documentation for other alternatives for receiving the error messages but it would seem that would require creating my own way of validating JSON and generating error messages.

Thank you for your time.

If you’re talking about jsonParseLinter, that uses the error message thrown by the browser’s JSON.parse, so no, there isn’t really anything we can change about its formulation.

1 Like

Thank you :+1: