Template Strings ALL THE WAY!!
This release adds a new rule requiring that all string concatenation be done via template strings.
// bad
let foo = "blah" + bar;
someFunction("foo '" + baz + "'");
// good
let foo = `blah${bar}`;
someFunction(`foo '${baz}`);