Skip to content

Commit 3faaff1

Browse files
committed
enforce semicolon rules in template expressions
1 parent ec4f0c8 commit 3faaff1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ const preprocess = text => {
240240
}
241241
if (node.expression && typeof node.expression === 'object') {
242242
// add the expression in question to the constructed string
243-
transformed_code += '(/* eslint-enable *//* eslint-disable indent, no-unused-expressions, quotes, semi */';
243+
transformed_code += '(/* eslint-enable *//* eslint-disable indent, no-unused-expressions, quotes */';
244244
get_translation(node.expression);
245245
transformed_code += '/* eslint-disable */);\n';
246246
}

0 commit comments

Comments
 (0)