-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add clojure-kondo for mount.defstate #130
Conversation
thanks for the PR! I use vi for development, hence the question for vs code, intellij, emacs humans: would it work if this does not live under the |
@tolitius This should indeed be in the FWIW, I use Emacs without LSP, so this issue has never occurred to me, but I run linters in CI, and clj-kondo will complain about the |
Thanks @rome-user @tolitius let me update the PR with config shortly |
@rajcspsg : Can you please update the file path? I can resubmit the patch - but would like for the original author to get recognition. Similar solution: https://gist.github.com/ethpran/e1741a5c408aec831b5e3a7e24f40fea Thanks |
@ieugen @rome-user @tolitius Sorry for the delay. I updated the PR. Please let me know if you have any other comments |
great thanks! 🤘 it should be in " let me know whether it works as expected |
I followed the instructions here: https://github.com/clj-kondo/clj-kondo/blob/master/doc/config.md#importing And it still did not copy the config. @tolitius : I believe we need to add "resources" dir to the source paths. See https://github.com/clj-kondo/clj-kondo/blob/master/doc/config.md#sample-exports
Files are not in jar:
Also, it would be nice to add deps.edn to the project so we can test this before cutting a new release.
|
Hopefully it will fix clj-kondo issue in tolitius#130
Looks like the project uses boot to build the uberjar instead of Leiningen, that would explain why the resources folder wasnt bundled into the JAR. (Leiningen by default adds |
since I don't use " I see this doc, but including a non compilable namespace in the jar is not an ideal solution: (ns hooks.defstate
(:require [clj-kondo.hooks-api :as api])) for example this is what I get when I refresh namespaces with tools.namespace: #error {
:cause "Could not locate clj_kondo/hooks_api__init.class, clj_kondo/hooks_api.clj or clj_kondo/hooks_api.cljc on classpath. Please check that namespaces with dashes use underscores in the Clojure file name."
:via
[{:type clojure.lang.Compiler$CompilerException
:message "Syntax error compiling at (hooks/defstate.clj:1:1)." not ideal. I added deps.edn to cover #131 since I do agree that with boot out of the picture " I use " so things can be as simple as (they were with lein and boot):
in any case I did build "0.1.19-SNAPSHOT" with let me know whether it works for you but I am still skeptical about keeping it in the classpath, since it would only compile for people who use " |
hello, hi @tolitius , I tested this and it partially works.
I don't follow this. You can add a lot of files in the jar and they will not influence the code (think about META-INF stuff or the lib/ inlcusion for jars - that require an entry in manifest.mf to work ) You probably get the above error because you need to add the clj-kondo library for development.
You are definitely missing out :) . clj-kondo with lsp is like crack - you get addicted and Calva is a good IDE for Clojure. Regarding the linting logic issue: In my code, I Some caveats:
@rajcspsg : Do you think you can fix this easy? If so I propose you work on branch and I can test that before we submit to @tolitius for merge. Sounds ok to you? |
@ieugen I believe what you're seeing is a consequence of the resulting node passed to clj-kondo from the hook. For |
closes #128