Invalid:
const x = `string value` // useless template literal
const y = `another ${x}`
Valid:
const x = 'string value'
const y = `another ${x}` // still valid
Invalid:
const x = `string value` // useless template literal
const y = `another ${x}`
Valid:
const x = 'string value'
const y = `another ${x}` // still valid