prettier/tests/require-pragma/json/__snapshots__/jsfmt.spec.js.snap

33 lines
731 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`format-anyway.json - json-verify 1`] = `
{"allOn": "Single", "Line": "example",
"noSpace":true,
"quote": {
"singleQuote": "example",
"indented": true,
},
"phoneNumbers": [
{"type": "home",
"number": "212 555-1234"},
{"type": "office",
"trailing": "commas by accident"},
],
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{
"allOn": "Single",
"Line": "example",
"noSpace": true,
"quote": {
"singleQuote": "example",
"indented": true
},
"phoneNumbers": [
{ "type": "home", "number": "212 555-1234" },
{ "type": "office", "trailing": "commas by accident" }
]
}
`;