Skip to content

Commit bee29ff

Browse files
committed
feat: linter fixes
1 parent b27dc9e commit bee29ff

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

clj-kondo/clj-kondo.exports/clara/rules/hooks/clara_rules.clj_kondo

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@
232232
fn-node (api/list-node
233233
(list
234234
(api/token-node 'fn)
235+
(api/token-node 'query-fn)
235236
input-args
236237
production-result))
237238
new-node (api/map-node
@@ -286,7 +287,7 @@
286287
(api/vector-node
287288
(vec production-output))))
288289
fn-node (api/list-node
289-
(cond-> (list (api/token-node 'fn))
290+
(cond-> (list (api/token-node 'fn) production-name)
290291
production-docs (concat [production-docs])
291292
:always (concat [input-args])
292293
production-opts (concat [production-opts])
@@ -337,6 +338,7 @@
337338
fn-node (api/list-node
338339
(list
339340
(api/token-node 'fn)
341+
(api/token-node 'rule-fn)
340342
input-args
341343
production-result))
342344
new-node (api/map-node
@@ -384,7 +386,7 @@
384386
(vec production-output))
385387
body-seq))
386388
fn-node (api/list-node
387-
(cond-> (list (api/token-node 'fn))
389+
(cond-> (list (api/token-node 'fn) production-name)
388390
production-docs (concat [production-docs])
389391
:always (concat [input-args])
390392
production-opts (concat [production-opts])

0 commit comments

Comments
 (0)