nextflow-io / language-server

The Nextflow language server
Apache License 2.0
9 stars 0 forks source link

Linter unescapes `\$` in double quoted config strings #62

Closed BioWilko closed 1 week ago

BioWilko commented 2 weeks ago

e.g.

runOptions = "--user \$(id -u):\$(id -g) --group-add 100"

is replaced with

runOptions = "--user $(id -u):$(id -g) --group-add 100"

which is invalid, single quote strings fixes this but the linter shouldn't actively break the config.

bentsherman commented 1 week ago

Fixed in 1.0.1