Skip to content

Commit 557f8f5

Browse files
committed
chore: eslint
1 parent 4ec3574 commit 557f8f5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

grammar.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ module.exports = grammar(C, {
326326

327327
module_name: $ => seq(
328328
$.identifier,
329-
repeat(seq('.', $.identifier)
329+
repeat(seq('.', $.identifier),
330330
),
331331
),
332332

@@ -341,20 +341,20 @@ module.exports = grammar(C, {
341341
field('name', $.module_name),
342342
field('partition', optional($.module_partition)),
343343
optional($.attribute_declaration),
344-
';'
344+
';',
345345
),
346346

347347
export_declaration: $ => seq(
348348
'export',
349-
choice($._block_item, seq('{', repeat($._block_item), '}'))
349+
choice($._block_item, seq('{', repeat($._block_item), '}')),
350350
),
351351

352352
import_declaration: $ => seq(
353353
optional('export'),
354354
'import',
355355
choice(
356-
field("name", $.module_name),
357-
field("partition", $.module_partition),
356+
field('name', $.module_name),
357+
field('partition', $.module_partition),
358358
field('header', choice(
359359
$.string_literal,
360360
$.system_lib_string,

0 commit comments

Comments
 (0)