It would be cool to add a rule which prefers string interpolation over using + on strings. E.g. ``` var s = "Hello " + name; // Error var s = 'Hello ${name}' // No error ```