<!-- 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 have a very high bar for adding new options. Find out more: https://prettier.io/docs/en/option-philosophy.html Tip! Don't write this stuff manually. 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 1.18.2** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuEB6AVOgBAARgTwAc4tgBDKfAXy3VQB0pIoBnGLADywF4sAKRliwAeACYBLAG4A+QUJETJWVLKhDhqRaoCUAbkYgANCAiEY46C2SgyAJ1sQA7gAU7CKyjKSI40UZAARrZkYADWcDAAyoQh4lAA5sgwtgCucMYAFjAAtgA2AOoZ4vAsMWBwke7FUsX4yOAsVsZxLHC2MM7B8dlkyABmZLmtxgBWLBwAQsFhEZFk2XAAMnFw-YPDIGMckXHxuXAAiikQ8GtD6SAxtq229QFkAfi50P6EtnEw+b4wGcgAHAAGYxvCCtfLBQj1N5wG6SVbGACOx3gnVMHhAZBYAFooHA4KJ8f5bHAkeJiZ0yN1ekgBudjK1suIkqkLixdvsjidVjT1hcYA8vqIfsgAEzGZJkcS5XYAYQg2R69Sg0HhIBSrQAKg8PLTWlQqEA) ```sh # Options (if any): ``` **Input:** ```jsx /** @type {any} */ const x = ( <div> <div /> </div> ); ``` **Output:** ```jsx /** @type {any} */ const x = (( <div> <div /> </div> )); ``` **Expected behavior:** No change, same as input.
Prettier 1.18.2
Playground link
# Options (if any):Input:
Output:
Expected behavior:
No change, same as input.