This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-12-07
Channels
- # adventofcode (94)
- # babashka (29)
- # babashka-sci-dev (2)
- # beginners (103)
- # calva (15)
- # cider (17)
- # clj-kondo (62)
- # cljsrn (24)
- # clojars (13)
- # clojure (97)
- # clojure-belgium (3)
- # clojure-berlin (3)
- # clojure-czech (1)
- # clojure-europe (68)
- # clojure-nl (1)
- # clojure-norway (3)
- # clojure-seattle (3)
- # clojure-uk (1)
- # clojurescript (7)
- # community-development (29)
- # conjure (2)
- # cursive (14)
- # data-science (15)
- # emacs (3)
- # graphql (10)
- # gratitude (1)
- # holy-lambda (32)
- # hoplon (21)
- # hyperfiddle (2)
- # jobs (2)
- # joyride (36)
- # lsp (4)
- # meander (13)
- # off-topic (203)
- # pathom (3)
- # polylith (6)
- # re-frame (4)
- # reagent (1)
- # reitit (28)
- # releases (1)
- # shadow-cljs (16)
- # slack-help (2)
- # sql (27)
- # vim (2)
maybe will help https://github.com/day8/re-frame/blob/master/docs/App-Structure.md#namespaced-ids
I'm using [reframe-utils.core :as rfu]
as (rfu/reg-basic-sub :login/username)
. It works with this, but I have to include the namespace of reg-basic-sub
to register the subscription, but the namespace is not used, that will be a problem with linters.
If you require a namespace as just [my.ns]
without any :as
or :refer
, a linter should not complain then. If it does, there should be a configuration option somewhere to disable that particular warning.
After all, it's exactly the same with e.g. Clojure multimethods. So such an issue is not specific to re-frame at all and is something that linters should be aware about.