Skip to content

Commit 2706e86

Browse files
chore: autoformat with dprint
1 parent ce231f8 commit 2706e86

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

grammar.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,11 @@ module.exports = grammar({
198198
token(prec(1, "}}")),
199199
),
200200

201-
pre_request_script: ($) => seq("<", WS, choice($.script, $.path), token(repeat1(NL))),
201+
pre_request_script: ($) =>
202+
seq("<", WS, choice($.script, $.path), token(repeat1(NL))),
202203
res_handler_script: ($) =>
203-
seq(token(prec(3, ">")), WS, choice($.script, $.path), token(repeat1(NL))),
204+
seq(token(prec(3, ">")), WS, choice($.script, $.path),
205+
token(repeat1(NL))),
204206
script: (_) =>
205207
seq(
206208
token(prec(1, "{%")),
@@ -232,7 +234,8 @@ module.exports = grammar({
232234
repeat1(token(prec(2, LINE_TAIL))),
233235
),
234236

235-
graphql_body: ($) => prec.right(seq($.graphql_data, optional($.json_body))),
237+
graphql_body: ($) =>
238+
prec.right(seq($.graphql_data, optional($.json_body))),
236239
graphql_data: (_) =>
237240
seq(
238241
token(

0 commit comments

Comments
 (0)