prefer-template Prefer template literals for string concatenation String concatenation separates authored text from interpolated values with binary operators. Instead, you SHOULD use one template literal containing the static and dynamic segments in their final order. - Category: style - Level: warning - Fix: automatic - Scope: module Reported function greet(name: string): string { return "hello, " + name; } Accepted function greet(name: string): string { return `hello, ${name}`; } Prior art - ESLint ยท prefer-template language/linter/src/rules/style/prefertemplate.rs:8