calva

Wednesdays you might find @U0ETXRFEW in the Gather Calva space. Invite is https://gather.town/invite?token=GZqrm7CR and the password is `Be kind`.
Baibhav Bista 2021-05-20T12:03:03.018900Z

Hey everyone, Here's a getting started tutorial for VsCode + Calva + WSL2 which I wrote some time ago (and updated recently for the latest versions) https://www.notion.so/Beginner-Clojure-Environment-Setup-Windows-36f70c16b9a7420da3cd797a3eb712fa Let me know if you have any feedback/run across any problems

4
❤️ 5
hoynk 2021-05-20T21:22:43.020900Z

Hi, does anyone know how can I disable linting so I don't get tons of red squiggles?

borkdude 2021-05-20T21:45:50.022300Z

AFAIK lsp turns on more squiggles by default: if there is an unresolved symbol, it squiggles it everywhere, but the default behavior of clj-kondo is only the first one. I think you can revert to this default and that may already help. cc @ericdallo The other option is to disable it completely.

☝️ 1
borkdude 2021-05-20T21:47:44.022600Z

@boccato <https://clojure-lsp.github.io/clojure-lsp/settings/#clj-kondo>

borkdude 2021-05-20T21:48:45.023600Z

:report-duplicates false is probably what you want (and this is what clj-kondo defaults to normally)

borkdude 2021-05-20T21:49:14.024Z

You can disable the linter completely as well, as documented over there

hoynk 2021-05-20T22:06:46.024300Z

Gotta read that better.

hoynk 2021-05-20T22:06:51.024500Z

Thanks!