Concatenating string literals with the + operator is unnecessary and reduces code readability.
String literals can be combined into a single literal, which is clearer and potentially more performant.
This rule reports cases where two string literals are concatenated using the + operator when they could be combined into a single string literal.
If your codebase uses string concatenation intentionally for code clarity or consistency (for example, when breaking long strings across multiple lines for readability), you might choose to disable this rule.
However, in most cases, combining string literals or using template literals improves code quality.