This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-16
Channels
- # announcements (7)
- # aws (9)
- # babashka (31)
- # beginners (28)
- # calva (14)
- # clj-kondo (29)
- # cljs-dev (23)
- # cljsrn (16)
- # clojure (21)
- # clojure-france (1)
- # clojure-nl (2)
- # clojure-spec (20)
- # clojure-sweden (4)
- # clojure-uk (6)
- # clojurescript (62)
- # community-development (5)
- # conjure (81)
- # cursive (14)
- # datomic (5)
- # defnpodcast (2)
- # docker (1)
- # figwheel-main (11)
- # fulcro (17)
- # graalvm (5)
- # jobs-discuss (5)
- # kaocha (1)
- # off-topic (54)
- # pathom (1)
- # pedestal (1)
- # quil (1)
- # re-frame (34)
- # shadow-cljs (34)
- # tools-deps (39)
- # uncomplicate (2)
gives me an unsatisfying [Error - 12:03:11 PM]
error
(ns foo
{:clj-kondo/config '{:linters
{:unresolved-symbol
{:exclude [(io.pedestal.http.route.definition/defroutes)]}}}}
(:require [io.pedestal.http.route.definition :refer [defroutes]]))
(defroutes x)
btw, I don't know this macro, but if it's similar to compojure/defroutes, you could try lint-as
@gerred still showing the unsatisfying error here
really? it's working for me now. I did have to (declare routes)
to make my var quote work
I was reading some old posts and I understood that LSP is the preferred method to configure clj-kondo with IntelliJ IDEA (and not File Watcher)?
@kari.marttila just choose the one that works
Thanks! clj-kondo is a great tool - very popular at Metosin.
@didibus however, I made this: https://clj-kondo.michielborkent.nl/ - it's calling clj-kondo as a service
Hum, ya I guess that can be an option. I was hoping to have a static website for this though, no server involved.
Hi Guys
I'm facing an issue that maybe you already had.
I have the same macro, defined in several project in different name spaces (I know it is bad, but this is the current state).
(the macro is the if-let*
so you can said it should be identified like the let
macro).
I'm trying to have one "global" config for all the projects.
Not sure how to do this, was thinking about the lint-at
section, but since the location of the macro in each project is different, I'm not sure it is possible.
Any idea?
@borkdude thanks for helping! I prefer not to do that since we have many different project and it will make the config really ugly 🙂