123456789101112131415161718192021222324252627282930313233343536373839 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`format-anyway.json 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"
- }
- ]
- }
- `;
|