--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/module/import/default_import.js --- # Input ```js import hey from "hey" import hey from "hey"; import "x" assert { type: "json" } import "foo" assert { "type": "json" }; import foo from "foo.json" assert { type: "json" }; import foo from "foo.json" assert { type: "json" }; import foo2 from "foo.json" assert { "type": "json", type: "html", "type": "js" }; import a, * as b from "foo" ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Line width: 80 Quote style: Double Quotes Quote properties: As needed Trailing comma: All Semicolons: Always ----- ```js import hey from "hey"; import hey from "hey"; import "x" assert { type: "json" }; import "foo" assert { "type": "json" }; import foo from "foo.json" assert { type: "json" }; import foo from "foo.json" assert { type: "json" }; import foo2 from "foo.json" assert { "type": "json", type: "html", "type": "js", }; import a, * as b from "foo"; ```