Reports a string concatenation. Suggests replacing it with a template literal

Example

 "result: " + a + "." 

After applying the quick-fix the code looks as follows:

 `result: ${a}.`