You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/nanoweave/ast/literals.clj:1:1: suspicious-expression: dissoc called with 1 args. (dissoc map) always returns map. Perhaps there are misplaced parentheses?
I tried suppressing it with something like:
(disable-warning
{:linter:suspicious-expression:for-macro 'clojure.core/dissoc
:if-inside-macroexpansion-of #{'schema.core/defrecord}
:within-depth20:reason"The defrecord macro expands to a redundant (but harmless) dissoc statement when creating a record with no attributes (in this case NilLit)."})
or by using the :ignored-faults option but nothing will work so I've surpassed that whole linter with
:exclude-linters
Hopefully one day I can work out the correct syntax or raise an issue with Eastwood.
The text was updated successfully, but these errors were encountered:
lein eastwood
throws:I tried suppressing it with something like:
or by using the
:ignored-faults
option but nothing will work so I've surpassed that whole linter with:exclude-linters
Hopefully one day I can work out the correct syntax or raise an issue with Eastwood.
The text was updated successfully, but these errors were encountered: