{ "maxLineLength": 80 } --- const a = `Hello world`; b(`hi ${ name } there`) c(`what is ${word}?`) d(`what is ${ word }?` ); e(`what is ${ word /*whatever*/}?` ); f`something ${ word } else`; const longTemplateString = `first part ${ part } second part ${ part2 } third part ${ part4 } fourth part`; --- const a = `Hello world`; b(`hi ${name} there`); c(`what is ${word}?`); d(`what is ${ word }?`); e(`what is ${ word /*whatever*/}?`); f`something ${ word } else`; const longTemplateString = `first part ${ part } second part ${ part2 } third part ${ part4 } fourth part`;