Fork me on GitHub
#calva
<
2021-05-20
>
baibhavbista12:05:03

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

❤️ 11
calva 8
hoynk21:05:43

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

borkdude21:05:50

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.

☝️ 2
borkdude21:05:45

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

borkdude21:05:14

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

hoynk22:05:46

Gotta read that better.