This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-11-08
Channels
- # adventofcode (9)
- # announcements (5)
- # babashka (3)
- # beginners (46)
- # calva (21)
- # cider (15)
- # clj-kondo (20)
- # cljs-dev (57)
- # cljsrn (10)
- # clojure (147)
- # clojure-dev (6)
- # clojure-europe (3)
- # clojure-france (2)
- # clojure-italy (8)
- # clojure-nl (18)
- # clojure-norway (5)
- # clojure-spec (16)
- # clojure-uk (63)
- # clojuredesign-podcast (7)
- # clojurescript (65)
- # clojurex (42)
- # cursive (12)
- # datomic (10)
- # fulcro (47)
- # graalvm (102)
- # graphql (2)
- # jobs (5)
- # joker (12)
- # off-topic (33)
- # pedestal (6)
- # re-frame (6)
- # reagent (8)
- # reitit (6)
- # remote-jobs (4)
- # rewrite-clj (10)
- # shadow-cljs (86)
- # sql (45)
- # testing (4)
- # tools-deps (43)
- # vim (8)
- # xtdb (3)
those who use it as a linter might be interested in this new feature: Joker can now lint directories and report globally unused namespaces and public vars: https://github.com/candid82/joker#linting-directories
👍 4
gostd
fork updated: https://github.com/jcburley/joker/
I'm trying to build it locally using Go 1.13.4 on OS X, but:
15:21:26 ~/workspaces/golang/src/github.com/candid82/joker > ./run.sh --version && go install
#
./a_cli_data.go:6:2: undefined: cliData
./a_math_data.go:6:2: undefined: mathData
./a_time_data.go:6:2: undefined: timeData
core/object.go:1: running "go": exit status 2
Don't know my way around the go ecosystem. Any pointers?name := f.filename[0 : len(f.filename)-5] // assumes .joke extension
in gen_data.go should change "tools_cli.joke" into "tools_cli" but seems to be just setting it to "cli".Reason I ask is, when I build from master
in the official Joker repo on my Mac OS X laptop, it works fine.
Further, I don't end up with any a_cli_data.go
, a_math_data.go
, or a_time_data.go
files in core
. I think they were renamed (to a_tools_cli_data.go
) or moved out of core
(to std
) awhile back.