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

39 lines
763 B
Plaintext
Raw Normal View History

// 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"
}
]
}
`;