0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 07:50:43 -05:00
penpot/.clj-kondo/config.edn

65 lines
1.4 KiB
Clojure
Raw Normal View History

{:lint-as
{promesa.core/let clojure.core/let
2022-02-28 16:11:42 -05:00
promesa.core/->> clojure.core/->>
promesa.core/-> clojure.core/->
2023-02-20 07:23:01 -05:00
promesa.exec.csp/go-loop clojure.core/loop
rumext.v2/defc clojure.core/defn
rumext.v2/fnc clojure.core/fn
app.common.data/export clojure.core/def
app.db/with-atomic clojure.core/with-open
app.common.data.macros/get-in clojure.core/get-in
app.common.data.macros/with-open clojure.core/with-open
app.common.data.macros/select-keys clojure.core/select-keys
app.common.logging/with-context clojure.core/do}
:hooks
{:analyze-call
{app.common.data.macros/export hooks.export/export
potok.core/reify hooks.export/potok-reify
app.util.services/defmethod hooks.export/service-defmethod
app.common.record/defrecord hooks.export/penpot-defrecord
}}
:output
{:exclude-files
["data_readers.clj"
"app/util/perf.cljs"
2021-09-29 09:39:25 -05:00
"app/common/logging.cljc"
2021-06-18 08:29:07 -05:00
"app/common/exceptions.cljc"]}
2020-12-02 03:58:50 -05:00
:linters
{:unsorted-required-namespaces
{:level :warning}
:potok/reify-type
{:level :error}
:unresolved-namespace
{:level :warning
:exclude [data_readers]}
:single-key-in
{:level :warning}
:non-arg-vec-return-type-hint
{:level :off}
:redundant-do
{:level :off}
:earmuffed-var-not-dynamic
{:level :off}
:dynamic-var-not-earmuffed
{:level :off}
:used-underscored-binding
{:level :warning}
:unused-binding
{:exclude-destructured-as true
:exclude-destructured-keys-in-fn-args false
}
}}
2020-12-02 03:58:50 -05:00