Open leonore opened 2 years ago
having an insight for lines of code per language across multiple repos is a common customer request.
there's ways of doing this with compute (content:output(.*\n -> $lang) count:all) and it works across small repos but there's some problems with it:
content:output(.*\n -> $lang) count:all
this issue is about investigating whether this would be feasible to do over the filesystem (hitting gitserver) instead of search
Heads up @joelkw @felixfbecker @vovakulikov @unclejustin - the "team/code-insights" label was applied to this issue.
Related a bit to https://github.com/sourcegraph/sourcegraph/issues/34933
having an insight for lines of code per language across multiple repos is a common customer request.
there's ways of doing this with compute (
content:output(.*\n -> $lang) count:all
) and it works across small repos but there's some problems with it:this issue is about investigating whether this would be feasible to do over the filesystem (hitting gitserver) instead of search