Fork me on GitHub
#clj-kondo
<
2020-01-23
>
gerred00:01:01

nw we're all busy 😄

avi00:01:29

just threw a on your PR that fixes my PR 😬

gerred01:01:54

OK longest customer call of my life

gerred01:01:58

i'm looking through all of this now

gerred01:01:48

@aviflax did you check if you were able to cut a release?

avi01:01:51

I didn’t because I was waiting for you one of us to test it

avi02:01:04

I can give it a try now if you’d like?

avi02:01:21

Er, or, in the next hour or two

avi02:01:49

@gerred either way is fine, let me know

gerred02:01:31

give it a try first, just so we can make sure we can split the load. 🙂

👍 4
avi04:01:30

Done, and it worked. The release process worked — my editor picked up on the update immediately. And the new feature works too!

gerred13:01:18

@UCJCPTW8J would you like to be made a collaborator too?

Adrian Smith13:01:52

@gerred yeah that'd be cool, thank you

otwieracz13:01:11

Hey, any ideas how can I tell clj-kondo to ignore errors like here:

otwieracz13:01:41

I've got this exclusion to prevent action from causing an error, but it still gives me false positives below.

:linters {:unresolved-symbol {:exclude [(com.fulcrologic.fulcro.mutations/defmutation [action remote ok-action error-action])]}}}

borkdude13:01:39

@slawek098 Seems to work here:

borkdude13:01:38

what is the warning about state?

otwieracz13:01:14

unresolved symbol state

borkdude13:01:17

you just need to add state to that vector as well, or just leave the vector empty, so it will ignore all unresolved symbols

borkdude13:01:57

I mean, leave the vector out

otwieracz13:01:44

This helped. Thanks!