I forked the repo with the intent of opening a PR to contribute a config for Meander, but when I looked at the structure of each subtree under configs I found it a little daunting. And I looked for docs on how to create a new config but didn’t find any.
So, just in case it helps, here’s what I’m currently using for Meander:
{:lint-as {meander.epsilon/defsyntax clojure.core/defn}
:linters {:unresolved-symbol {:exclude [(meander.epsilon/find)
(meander.epsilon/match)
(meander.epsilon/rewrite)
(meander.epsilon/search)]}}}
(which may be incomplete; this just happens to be what I hacked together from various Clojurians messages, and it’s working for my project)
…and if this project does at some point gain a script or some kind of template for creating a new lib config, I’d be happy to try again…
I forked the repo with the intent of opening a PR to contribute a config for Meander, but when I looked at the structure of each subtree under
configsI found it a little daunting. And I looked for docs on how to create a new config but didn’t find any.So, just in case it helps, here’s what I’m currently using for Meander:
{:lint-as {meander.epsilon/defsyntax clojure.core/defn} :linters {:unresolved-symbol {:exclude [(meander.epsilon/find) (meander.epsilon/match) (meander.epsilon/rewrite) (meander.epsilon/search)]}}}(which may be incomplete; this just happens to be what I hacked together from various Clojurians messages, and it’s working for my project)
…and if this project does at some point gain a script or some kind of template for creating a new lib config, I’d be happy to try again…