While navigating through the Prettier extension in Vscode, I am struggling to find a way to disable a specific scenario. In particular, I am having trouble with the formatting of an html tag.
Below is a snippet of code that requires some adjustments whenever I use the Prettier tool. The current output looks like this:
<tag-html
[val1]="valueStr"
[val2]="valueStr"
>
</tag-html>
What I am aiming for is to have Prettier produce the following output:
<tag-html
[val1]="valueStr"
[val2]="valueStr">
</tag-html>