This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-01-03
Channels
- # aleph (2)
- # announcements (13)
- # babashka (7)
- # beginners (36)
- # calva (26)
- # cider (11)
- # circleci (13)
- # clj-kondo (15)
- # clojure (105)
- # clojure-europe (79)
- # clojure-nl (3)
- # clojure-uk (6)
- # clojurescript (17)
- # conjure (4)
- # core-logic (2)
- # cursive (10)
- # data-science (5)
- # datalevin (11)
- # datalog (14)
- # eastwood (6)
- # emacs (2)
- # figwheel-main (1)
- # fulcro (34)
- # google-cloud (1)
- # graphql (3)
- # introduce-yourself (7)
- # jobs (1)
- # leiningen (17)
- # lsp (46)
- # malli (2)
- # minecraft (3)
- # missionary (19)
- # off-topic (31)
- # other-languages (49)
- # polylith (2)
- # portal (5)
- # practicalli (1)
- # quil (77)
- # releases (1)
- # remote-jobs (1)
@UQTHDKJ8J Feel free to make a PR to the editor integration page of clj-kondo's docs
How to tell cljkondo to stop complain about the unresolved symbols on this line: https://github.com/juxt/site/blob/master/bin/site/#L1179. ? These symbosl are actually created by some macros in the ansi package
@i You can find configs on this page for every linter:
https://github.com/clj-kondo/clj-kondo/blob/master/doc/linters.md#unresolved-var
Also you can configure :lint-as
to handle the macro which defines the colors.
The colors are generated by this line: https://github.com/AvisoNovate/pretty/blob/master/src/io/aviso/ansi.clj#L72
And access in this way: https://github.com/juxt/site/blob/master/bin/site/#L1179
The :list-as approach is not applicable here. and (declare some-ns/name) is also invalid.
I mean this one: > You can find configs on this page for every linter: > https://github.com/clj-kondo/clj-kondo/blob/master/doc/linters.md#unresolved-var