<!-- BEFORE SUBMITTING AN ISSUE: 1. Search for your issue on GitHub: https://github.com/prettier/prettier/issues A large number of opened issues are duplicates of existing issues. If someone has already opened an issue for what you are experiencing, you do not need to open a new issue — please add a 👍 reaction to the existing issue instead. 2. We get a lot of requests for adding options, but Prettier is built on the principle of being opinionated about code formatting. This means we add options only in the case of strict technical necessity. Find out more: https://prettier.io/docs/en/option-philosophy.html Don't fill the form below manually! Let a program create a report for you: 1. Go to https://prettier.io/playground 2. Paste your code and set options 3. Press the "Report issue" button in the lower right --> **Prettier 2.7.0** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuc0DOMAEMCeAHOAETgDM1MBeTAcwEcAbAAwB0pNt85MBVNOAJ0zBW7dsxDjJbUQDEAlvwyZ6cqHFYjRAZTiQoAE0wAZVeuliJlzewBuAQ3oBXOEkxaY-VdU0BfVoxAAGhAIPBg5dGRQO35+CAB3AAUYhDRkEAd4uxw04IAjfjswAGs4GC07AFs4EzVkEgc+fMKSsq08Iq9kD2dguEq8uH19IaM7KGpHO2o4GQh+SrsYcIn0u0cYCCCQAAsYSvoAdR25eDQOsDgdKDRTuRtTnHSwNFyQVT5+GETC6kX6xpwYIAKzQAA8tF56HAAIqOCDwAH0JogDqKATpPJ2Qb0bZ4TywQ5yfQwHbIAAcAAZgviIHxDoU8Ol8XBPjY4NtaPD4D9QmkUHY0ABaNRDIbbfhwLkKOA-ab-JANZFAkB8Spybr8XqqqGw7kcxWA4IwbFEklkpAAJmNhTkKgmAGEIJUFSBWQBWbaOPgAFWx-KVKJszgAkgYEOUwJ4wgBBAzuHDQpF8Hw+IA) **Input:** ```jsx const typeDefs = gql` type User { """ First line Second Line """ value: String } ` ``` **Output:** ```jsx const typeDefs = gql` type User { """ First line Second Line """ value: String } ` ``` **Expected behavior:** Unless I'm mistaken, the empty comment line should not be removed by prettier.