Prettier 2.8.4
Playground link
Input:
<script lang="ts"></script>
<template>
<comp :foo="(a:string)=>1"/>
</template>
Output:
<script lang="ts"></script>
<template>
<comp :foo="(a:string)=>1" />
</template>
Expected behavior:
<script lang="ts"></script>
<template>
<comp :foo="(a: string) => 1" />
</template>
Prettier 2.8.4
Playground link
Input:
Output:
Expected behavior: