This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-04-24
Channels
- # architecture (7)
- # beginners (73)
- # boot (4)
- # cider (48)
- # cljsjs (7)
- # cljsrn (27)
- # clojure (206)
- # clojure-boston (2)
- # clojure-italy (21)
- # clojure-nl (8)
- # clojure-spec (7)
- # clojure-uk (94)
- # clojurescript (126)
- # clojutre (7)
- # core-async (3)
- # cursive (7)
- # data-science (1)
- # datascript (4)
- # datomic (6)
- # duct (1)
- # emacs (19)
- # figwheel (1)
- # fulcro (31)
- # graphql (13)
- # jobs (5)
- # jobs-discuss (42)
- # keechma (4)
- # leiningen (10)
- # luminus (3)
- # mount (2)
- # nyc (3)
- # off-topic (37)
- # om-next (3)
- # onyx (45)
- # pedestal (2)
- # re-frame (4)
- # reagent (2)
- # reitit (16)
- # shadow-cljs (118)
- # spacemacs (10)
- # tools-deps (8)
- # vim (20)
In my ClojureScript files, requires for [clojure.spec.alpha :as spec]
have spec
highlighted "Unused alias" even though I do have (spec/def ..)
usage in the file.
If I change the require to [cljs.spec.alpha :as spec]
, then the "Unused alias" indication disappears
Or if I do use else than (spec/def)
such as (spec/assert)
, that also makes it disappear.
Perhaps Cursive doesn’t yet have logic for clojure
namespace aliasing https://clojurescript.org/guides/ns-forms#__code_clojure_code_namespace_aliasing
I just did a rename package refactoring and i'm noticing that it didn't seem to fix any of the requires across the project. Is that an expected outcome?