eastwood

All things realted to eastwood - the Clojure linter
slipset 2018-11-08T05:42:57.003Z

It works for linting Eastwood. My project at work blows up.

slipset 2018-11-08T05:43:53.004200Z

So now I need to dig into graph partitioning

2018-11-08T06:34:32.004900Z

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.

slipset 2018-11-08T06:38:32.008200Z

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.

slipset 2018-11-08T06:38:57.009Z

I guess you could also search for islands in the graph.