Skip to content

Commit d495e11

Browse files
committed
Try lint
1 parent 9152ab6 commit d495e11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clojure-ts-mode.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ https://github.com/weavejester/cljfmt/blob/fb26b22f569724b05c93eb2502592dfc2de89
737737
(or (clojure-ts--symbol-node-p first-child)
738738
(clojure-ts--keyword-node-p first-child)))))
739739

740-
(defun clojure-ts--match-expression-in-body (node parent bol)
740+
(defun clojure-ts--match-expression-in-body (node parent _bol)
741741
"Match NODE if it is an expression used in a body argument.
742742
PARENT is expected to be a list literal.
743743
See `treesit-simple-indent-rules'."
@@ -750,7 +750,7 @@ See `treesit-simple-indent-rules'."
750750
;; Symbols starting with this are false positives
751751
(rx line-start (or "default" "deflate" "defer"))
752752
first-child))
753-
(not (clojure-ts--match-with-metadata node parent bol))
753+
(not (clojure-ts--match-with-metadata node parent _bol))
754754
(clojure-ts--symbol-matches-p
755755
clojure-ts--symbols-with-body-expressions-regexp
756756
first-child)))))

0 commit comments

Comments
 (0)