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`.
borkdude 2020-09-05T11:16:47.139700Z

Does Calva sometimes push preview versions to the marketplace? Is this a concept in VSCode - pushing an experimental version that isn't installed automatically?

borkdude 2020-09-05T11:17:09.140100Z

I'd like to do this for clj-kondo maybe

borkdude 2020-09-05T11:19:20.140600Z

I guess one could also just make a vsix for people to download, that's probably the way to go

2020-09-05T11:20:56.141600Z

fwiw, for some vscode extensions, i've put the latest release version's .vsix in the corresponding source repository: https://github.com/sogaiu/vscode-clojure-defs

pez 2020-09-05T11:22:00.142400Z

Distributing VSIX files is the only way I know about to do this, @borkdude

pez 2020-09-05T11:22:50.143400Z

We quite often publish such VSIX files here. You are more than welcome to publish previews of the clj-kondo extension here as well.

borkdude 2020-09-05T11:22:51.143500Z

I'd rather not put it in the repo itself, but rather attach it to some issue @sogaiu

2020-09-05T11:23:17.143800Z

whatever works for you 🙂

borkdude 2020-09-05T11:23:53.144400Z

@pez Cool. Let me try that for the new ignore feature.

2020-09-05T11:24:01.144600Z

you know the vscode ui provides an install from vsix option right?

borkdude 2020-09-05T11:24:48.145Z

yeah. it's pretty cool how this all works

2020-09-05T11:25:00.145200Z

just checking 🙂

borkdude 2020-09-05T11:30:02.145300Z

borkdude 2020-09-05T11:30:55.146Z

That version has the ability to ignore warnings based on annotations. See examples: https://github.com/borkdude/clj-kondo/issues/872#issuecomment-686760114

1💯1
borkdude 2020-09-05T11:32:17.146500Z

Simple example:

(defn f []
  #_{:clj-kondo/ignore [:inline-def]}
  (def x))

2020-09-05T11:53:15.146700Z

cool!

2020-09-05T11:56:13.147Z

just tried it -- seems to be working :thumbsup:

bringe 2020-09-05T18:29:06.147700Z

Just tried this as well and it seems to work fine :clj-kondo:

borkdude 2020-09-05T18:31:07.147900Z

Thank you!

1👍
borkdude 2020-09-05T18:31:18.148100Z

Thank you!

borkdude 2020-09-05T21:50:21.148900Z

Uploaded another VSIX here: https://github.com/borkdude/clj-kondo/issues/992#issuecomment-687667445 for testing a feature for shared dirs with config + hook code.