In es6 template literals, how can one wrap a long template literal to multiline without creating a new line in the string?
For example, if you do this:
Similar to Doug's answer this is accepted by my TSLint config and remains untouched by my IntelliJ auto-formatter:
const text = `a very long string that just ${ continues } and ${continues} and ${continues}`