Needs to use backticks to enable template strings:
for (var opt of config.get("oelint-vscode.run.constmodadd")) {
res.push(`--constantmods=+${opt}`);
}
for (var opt of config.get("oelint-vscode.run.constmodrem")) {
res.push(`--constantmods=-${opt}`);
}
for (var opt of config.get("oelint-vscode.run.constmodovr")) {
res.push(`--constantmods=${opt}`);
}
https://github.com/priv-kweihmann/oelint-vscode/blob/e53c867dd7f04603f1afe4a241bd3eb8ff257d72/src/linter.ts#L84-L92
Needs to use backticks to enable template strings: