prettier/tests/trailing_whitespace/__snapshots__/jsfmt.spec.js.snap

37 lines
900 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`trailing.js 1`] = `
====================================options=====================================
parsers: ["flow", "typescript"]
printWidth: 80
| printWidth
=====================================input======================================
export type Result<T, V> = | { kind: "not-test-editor1" } | { kind: "not-test-editor2" };
// Note: there are trailing whitespace in this file
\`
\` + \`
\`;
=====================================output=====================================
export type Result<T, V> =
| { kind: "not-test-editor1" }
| { kind: "not-test-editor2" };
// Note: there are trailing whitespace in this file
\`
\` +
\`
\`;
================================================================================
`;