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

27 lines
471 B
Plaintext

exports[`test test.js 1`] = `
"/*
* @flow
*/
function foo(x) {
var a: number = \'asdf\';
return x * 10;
}
// This file should be ignored, so this should not result in an error
foo(\'Hello, world!\');
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/*
* @flow
*/
function foo(x) {
var a: number = \"asdf\";
return x * 10;
}
// This file should be ignored, so this should not result in an error
foo(\"Hello, world!\");
"
`;