We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
formatting jsx namespaced attribute extra space
https://www.typescriptlang.org/zh/play?#code/MYewdgzgLgBAhjAvDAPAEwJYDcBc8EBmIIMeMARnAE6IBEUAptLTESDpQF50CsLA9AD4A3EA
Paste this into a editor (like VSCode), then format it with default foramtter:
const a = <div: aa foo : bar="test" foo:baz="5" />;
Outputs
const a = <div: aa foo: bar="test" foo: baz="5" />;
const a = <div:aa foo:bar="test" foo:baz="5" />;
The text was updated successfully, but these errors were encountered:
add test for Unwanted space after the colon of a namespaced JSX attri…
4c93a51
…bute microsoft#55293
c790cd4
028beaf
Successfully merging a pull request may close this issue.
🔎 Search Terms
formatting jsx namespaced attribute extra space
🕗 Version & Regression Information
⏯ Playground Link
https://www.typescriptlang.org/zh/play?#code/MYewdgzgLgBAhjAvDAPAEwJYDcBc8EBmIIMeMARnAE6IBEUAptLTESDpQF50CsLA9AD4A3EA
💻 Code
Paste this into a editor (like VSCode), then format it with default foramtter:
🙁 Actual behavior
Outputs
🙂 Expected behavior
Outputs
The text was updated successfully, but these errors were encountered: