prettier/tests/stylefmt/comment-in-rules/__snapshots__/jsfmt.spec.js.snap

41 lines
822 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`comment-in-rules.css 1`] = `
====================================options=====================================
parsers: ["css"]
printWidth: 80
| printWidth
=====================================input======================================
.class
{display: inline-block;
/* comment */
float: left;}
#id {
font-size: 12px;
/* colors */
color: pink;
background: #fff;
}
=====================================output=====================================
.class {
display: inline-block;
/* comment */
float: left;
}
#id {
font-size: 12px;
/* colors */
color: pink;
background: #fff;
}
================================================================================
`;