Enable no-extra-semi lint

This commit is contained in:
valadaptive
2023-12-02 10:15:03 -05:00
parent 27e63a7a77
commit 0a27275772
12 changed files with 21 additions and 22 deletions

View File

@ -133,7 +133,7 @@ export function replaceVariableMacros(input) {
// Replace {{addvar::name::value}} with empty string and add value to the variable value
line = line.replace(/{{addvar::([^:]+)::([^}]+)}}/gi, (_, name, value) => {
name = name.trim();
addLocalVariable(name, value);;
addLocalVariable(name, value);
return '';
});