Fork me on GitHub
#clj-kondo
<
2021-09-05
>
huygn04:09:12

hi, can I do smthing like this to make hiccups.runtime not showing warning?

huygn04:09:57

not sure if clj-kondo/ignore works on namespace like /config :thinking_face:

borkdude06:09:41

Why are you requiring the namespace if you don’t use it!

borkdude06:09:13

Sorry I meant question mark, fat finger on phone

huygn07:09:59

hiccups.runtime is actually required implicitly by its macro 😂

huygn07:09:38

so if I remoce that line h/html wont work

borkdude07:09:58

you can remove the alias

borkdude07:09:05

and then clj-kondo will not complain

borkdude07:09:40

just [hiccups.runtime]

👍 2
huygn07:09:53

nice, thanks!