Skip to content

Remove interpolated strings #92

@jeparlefrancais

Description

@jeparlefrancais

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions