prettier/tests/flow/include_suppressed/__snapshots__/jsfmt.spec.js.snap

30 lines
794 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
// @flow
(123: string); // Normal error
// $FlowFixMe
(123: string); // Suppressed error
// $FlowFixMe - unused suppression comment
=====================================output=====================================
// @flow
(123: string); // Normal error
// $FlowFixMe
(123: string); // Suppressed error
// $FlowFixMe - unused suppression comment
================================================================================
`;