Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # clj-kondo ## install <code clojure> brew install borkdude/brew/clj-kondo </code> ## config.edn .clj-kondo/config.edn <code clojure> {:linters {:unresolved-symbol {:level :info :exclude [(day8.re-frame.tracing/fn-traced)]}}} </code> ## Error ### Clj-kondo cache is locked by other thread or process. <code> #!/bin/bash clj-kondo --cache false --lint src --config '{:output {:pattern "::{{level}} file={{filename}},line={{row}},col={{col}}::{{message}}"}}' </code> ### 설치 deps.edn 파일 만들고, 설정 예) <code clojure> {:deps {clj-kondo/config {:git/url "https://github.com/clj-kondo/config" :sha "c37c13ea09b6aaf23db3a7a9a0574f422bb0b4c2"} lilactown/helix {:mvn/version "0.1.9"}}} </code> 그리고 실행 <code clojure> clj-kondo --lint "$(clojure -Spath)" --copy-configs --skip-lint </code> ## Docs - [[re-frame]] open/clj-kondo.txt Last modified: 2024/10/05 06:15by 127.0.0.1