Closed clouds56 closed 6 months ago
<template> <div v-if="label = 'a'"></div> </template>
is now formatted to
<template> <div v-if='label = "a"'></div> </template>
Is it anyway to keep it as is? I don't want to change my typescript config "quoteStyle": "preferDouble".
"quoteStyle": "preferDouble"
No. markup_fmt can't do anything with the code in attribute value, and markup_fmt just sends this code to "dprint-plugin-typescript" and let it format.
It may be possible. Needs investigation.
is now formatted to
Is it anyway to keep it as is? I don't want to change my typescript config
"quoteStyle": "preferDouble"
.