Skip to content

Commit 98c4d2f

Browse files
chore: autoformat with dprint
1 parent c4d0465 commit 98c4d2f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

grammar.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ module.exports = grammar({
128128
status_text: (_) =>
129129
/(Continue|Switching Protocols|Processing|OK|Created|Accepted|Non-Authoritative Information|No Content|Reset Content|Partial Content|Multi-Status|Already Reported|IM Used|Multiple Choices|Moved Permanently|Found|See Other|Not Modified|Use Proxy|Switch Proxy|Temporary Redirect|Permanent Redirect|Bad Request|Unauthorized|Payment Required|Forbidden|Not Found|Method Not Allowed|Not Acceptable|Proxy Authentication Required|Request Timeout|Conflict|Gone|Length Required|Precondition Failed|Payload Too Large|URI Too Long|Unsupported Media Type|Range Not Satisfiable|Expectation Failed|I'm a teapot|Misdirected Request|Unprocessable Entity|Locked|Failed Dependency|Too Early|Upgrade Required|Precondition Required|Too Many Requests|Request Header Fields Too Large|Unavailable For Legal Reasons|Internal Server Error|Not Implemented|Bad Gateway|Service Unavailable|Gateway Timeout|HTTP Version Not Supported|Variant Also Negotiates|Insufficient Storage|Loop Detected|Not Extended|Network Authentication Required)/,
130130
response: ($) =>
131-
seq($.http_version, WS, $.status_code, WS, optional($.status_text), NL),
131+
seq($.http_version, WS, $.status_code, WS, optional($.status_text),
132+
NL),
132133

133134
request: ($) =>
134135
prec.right(seq(

0 commit comments

Comments
 (0)