dprint-plugin-typescript
dprint-plugin-typescript copied to clipboard
Option to add spaces around placeholders inside template strings
Template strings inside backticks can contain placeholders. It should be possible to add or remove spaces around these placeholders. For example:
`Hello, ${ username }`
// or
`Hello, ${username}`
Right now spaces around are always removed.