File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -737,7 +737,7 @@ https://github.com/weavejester/cljfmt/blob/fb26b22f569724b05c93eb2502592dfc2de89
737
737
(or (clojure-ts--symbol-node-p first-child)
738
738
(clojure-ts--keyword-node-p first-child)))))
739
739
740
- (defun clojure-ts--match-expression-in-body (node parent bol )
740
+ (defun clojure-ts--match-expression-in-body (node parent _bol )
741
741
" Match NODE if it is an expression used in a body argument.
742
742
PARENT is expected to be a list literal.
743
743
See `treesit-simple-indent-rules' ."
@@ -750,7 +750,7 @@ See `treesit-simple-indent-rules'."
750
750
; ; Symbols starting with this are false positives
751
751
(rx line-start (or " default" " deflate" " defer" ))
752
752
first-child))
753
- (not (clojure-ts--match-with-metadata node parent bol ))
753
+ (not (clojure-ts--match-with-metadata node parent _bol ))
754
754
(clojure-ts--symbol-matches-p
755
755
clojure-ts--symbols-with-body-expressions-regexp
756
756
first-child)))))
You can’t perform that action at this time.
0 commit comments