Closed
Description
π Search Terms
formatting jsx namespaced attribute extra space
π Version & Regression Information
- This changed between versions v5.0.x and v5.1.0
β― Playground Link
π» Code
Paste this into a editor (like VSCode), then format it with default foramtter:
const a = <div: aa foo : bar="test" foo:baz="5" />;
π Actual behavior
Outputs
const a = <div: aa foo: bar="test" foo: baz="5" />;
π Expected behavior
Outputs
const a = <div:aa foo:bar="test" foo:baz="5" />;