From b00ae77901d51a126a152dfd689b9b83244328c5 Mon Sep 17 00:00:00 2001 From: Caleb White Date: Tue, 21 Nov 2023 08:19:31 -0600 Subject: [PATCH] Lint fixes --- common/define-grammar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/define-grammar.js b/common/define-grammar.js index 2ae6ab86..6284c19f 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -142,7 +142,7 @@ module.exports = function defineGrammar(dialect) { text_interpolation: $ => seq( '?>', optional($.text), - choice($.php_tag, $._eof) + choice($.php_tag, $._eof), ), text: _ => repeat1(choice( @@ -1529,7 +1529,7 @@ module.exports = function defineGrammar(dialect) { _semicolon: $ => choice($._automatic_semicolon, ';'), }, }); -} +}; /** * Creates a regex that matches the given word case-insensitively,