chore: query formatting

This commit is contained in:
Pham Huy Hoang 2024-01-06 15:05:50 +09:00 committed by Christian Clason
parent 79975d6557
commit 57a8acf0c4
674 changed files with 18466 additions and 12648 deletions

View file

@ -2,7 +2,6 @@
; Body fold will "join" the next adjacent fold into a SUPER fold.
; This is an issue with the grammar.
; (body)
(if_statement)
(elif_clause)
(else_clause)
@ -16,10 +15,11 @@
(lambda)
(constructor_definition)
] @fold
; It's nice to be able to fold the if/elif/else clauses and the entire
; if_statement.
(if_statement (body) @fold)
(if_statement
(body) @fold)
; Fold strings that are probably doc strings.
(expression_statement (string) @fold)
(expression_statement
(string) @fold)