It works for linting Eastwood. My project at work blows up.
So now I need to dig into graph partitioning
Are you aware of any tool that enables parallel require/load of Clojure namespaces? I haven't heard of one, but nor have I looked for one.
tools.deps gives you the dependency graph of the ns’s you want to lint. So all ns’s without deps should be lintable in parallel. Once they’re done, you could lint all the ones that depend on the leaf nodes and so on.
I guess you could also search for islands in the graph.