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
SemanticDiff doesn't indicate any changes in JavaScript/TypeScript/TSX if the only difference is an automatically inserted semicolon.
return 1
vs.
The second example is parsed as:
return; 1;
Since we can't highlight any non-existing semicolons, we could highlight the added line break in the same way as we currently do for strings.
Thanks @ElianCordoba for reporting.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SemanticDiff doesn't indicate any changes in JavaScript/TypeScript/TSX if the only difference is an automatically inserted semicolon.
vs.
The second example is parsed as:
Since we can't highlight any non-existing semicolons, we could highlight the added line break in the same way as we currently do for strings.
Thanks @ElianCordoba for reporting.
The text was updated successfully, but these errors were encountered: