This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-03-15
Channels
- # aws (25)
- # babashka (11)
- # beginners (24)
- # calva (18)
- # clj-kondo (6)
- # cljdoc (1)
- # clojure (48)
- # clojure-europe (3)
- # clojure-houston (1)
- # clojure-uk (22)
- # clojuredesign-podcast (8)
- # clojurescript (9)
- # cursive (8)
- # dirac (6)
- # duct (19)
- # fulcro (17)
- # hoplon (29)
- # mount (3)
- # off-topic (24)
- # pathom (6)
- # re-frame (6)
- # shadow-cljs (5)
- # spacemacs (5)
- # sql (10)
- # tools-deps (7)
- # vim (2)
I just got my first error like this in a CI build:
test/circle/db/test_mongo_metrics.clj:1:1: error: Found an opening ( with no matching )
test/circle/db/test_mongo_metrics.clj:248:1: error: Expected a ) to match ( from line 1
😝 12
It was fun - kondo found an unused :import - it was the only import in the ns form, so i removed the whole :import form.
But I accidentally removed the trailing ) which left the ns form open (no closing paren)
So the col 1 line 1 refers to the opening paren of the ns form.