-
-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Labels
Description
Add rule to remove interpolated strings. Simple strings can be converted to string expressions:
Examples:
return `...`
Converts into:
return "..."
More complex interpolated strings can be a chain of concatenation
return `...{true}`
Converts into:
return "..." .. tostring(true)
matthargett and Heliodex