Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
calebdw committed Nov 21, 2023
1 parent 0d23e65 commit b00ae77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/define-grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -1529,7 +1529,7 @@ module.exports = function defineGrammar(dialect) {
_semicolon: $ => choice($._automatic_semicolon, ';'),
},
});
}
};

/**
* Creates a regex that matches the given word case-insensitively,
Expand Down

0 comments on commit b00ae77

Please sign in to comment.