This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-02-15
Channels
- # announcements (27)
- # architecture (15)
- # aws (2)
- # babashka (5)
- # beginners (77)
- # calva (42)
- # cider (22)
- # clj-kondo (47)
- # cljfx (7)
- # clojure (66)
- # clojure-australia (1)
- # clojure-europe (32)
- # clojure-france (10)
- # clojure-israel (2)
- # clojure-italy (1)
- # clojure-nl (8)
- # clojure-uk (53)
- # clojurescript (29)
- # conjure (28)
- # core-async (2)
- # cursive (26)
- # data-science (1)
- # datascript (11)
- # datomic (33)
- # emacs (4)
- # fulcro (5)
- # girouette (3)
- # helix (1)
- # jobs (2)
- # leiningen (17)
- # luminus (2)
- # malli (15)
- # music (2)
- # off-topic (51)
- # pathom (3)
- # rdf (91)
- # remote-jobs (1)
- # reveal (7)
- # sci (6)
- # shadow-cljs (10)
- # spacemacs (3)
- # sql (23)
- # tools-deps (52)
- # uncomplicate (2)
- # vim (3)
- # xtdb (9)
@d.ian.b you can customize the files that projectile consider as root files
, for example I have this on my config:
(setq projectile-project-root-functions '(projectile-root-top-down))
(setq projectile-project-root-files
'("project.clj" "package.json" ".git" ".bzr" ".svn" ".hg" "_darcs" ".projectile" "Makefile"))
So any subdirectory containing a project.clj
would be considered as a separate project. Reminds me I need to add deps.edn
to the list.
I don't remember why I changed the default value of projectile-project-root-functions
though. Might be needed, might not :man-shrugging:thanks đŸ˜„