no-useless-concat
Configuration
rslint.config.ts
Rule Details
Disallow unnecessary concatenation of literals or template literals. This rule flags a + that joins two string literals or template literals on the same line, since they could be written as a single literal.
Concatenation that spans multiple source lines is intentionally not reported.
Examples of incorrect code for this rule:
Examples of correct code for this rule: