Fork me on GitHub
#clj-kondo
<
2024-01-14
>
hifumi12319:01:19

The CI for lein-clj-kondo seems broken. Latest version for clj-kondo is v2023.12.15, but the lein plugin is stuck at v2023.10.20

1
borkdude19:01:38

I'll have a look

gratitude 1
hifumi12319:01:53

Thanks for the quick fix!

hifumi12321:01:25

I am using in-ns for some monkeypatching. This seems to throw off several linters in clj-kondo. Is there a way to disable linting then re-enable it? eslint, for instance, allows one to write

/* es-lint-disable */
...
/* es-lint-enable */
Is there equivalent in clj-kondo?

1
borkdude21:01:24

there is #_:clj-kondo/ignore you can put on forms, there is no undo. you can make one giant do form and put an ignore hint on it instead

👍 1
hifumi12321:01:15

oh that is smart, thanks for the advice