Does anyone have a good clj-kondo config to ignore unresolved symbol for ornament constructs?
goog.DEBUG shouldn't give you any errors I think:
$ clj-kondo --lint - --lang cljs <<< 'goog.DEBUG'
linting took 30ms, errors: 0, warnings: 0I've tried this, which seems to work. Does this look right?
{:lint-as {lambdaisland.ornament/defstyled clojure.core/def}
:linters {:unresolved-symbol {:exclude [goog.DEBUG
(lambdaisland.ornament/defstyled [props text])]}}}