Closed BioWilko closed 1 week 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.
Fixed in 1.0.1
e.g.
is replaced with
which is invalid, single quote strings fixes this but the linter shouldn't actively break the config.