--- source: crates/biome_formatter_test/src/snapshot_builder.rs info: 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 Indent width: 2 Line ending: LF Line width: 80 Quote style: Double Quotes JSX quote style: Double Quotes Quote properties: As needed Trailing comma: All Semicolons: Always Arrow parentheses: Always Bracket spacing: true Bracket same line: false Attribute Position: Auto ----- ```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"; ```