mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 08:01:10 +00:00
Clojure-lsp will run clj-kondo on the module folders, so those modules should refer back to root configuration. Clj-kondo itself works the same, if running from a module directory. Some editor plugins might run clj-kondo on the working directory always (reitit root folder usually), and in those cases this isn't needed.
6 lines
333 B
Clojure
6 lines
333 B
Clojure
{;;:skip-comments true
|
|
:lint-as {potemkin/def-derived-map clojure.core/defrecord}
|
|
:linters {:missing-else-branch {:level :off}
|
|
:unused-binding {:level :off}
|
|
:unused-referred-var {:exclude {clojure.test [deftest testing is are]
|
|
cljs.test [deftest testing is are]}}}}
|