sorawee
2020-8-23 02:43:31

Is it possible to add a Racket code that statically analyze the Racket code base as a part of the CI process?


notjack
2020-8-23 04:02:47

@sorawee maybe an analyzer submodule of the lang definition? similar to the reader submodule, except it contains a function that can be run to analyze the code in a module written in the lang.


samth
2020-8-23 04:51:04

@sorawee certainly, if you have a static analysis tool to run I’d be happy to make that happen.


sorawee
2020-8-23 04:57:58

I do: that’s how I discovered https://github.com/racket/racket/pull/3361


notjack
2020-8-23 04:59:04

(oh you meant in racket/racket specifically)


sorawee
2020-8-23 04:59:37

yeah, and potentially other repos as well. The point is that one analysis should apply to several files, not just one particular module