You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it's only possible to select one of the build in reporters.
It would be great if custom reporter could be specified via CLI or .jsinspectrc config file. It would enable the creation of custom reporters (in separate npm packages)... like it is possible e.g. in JSCPD or ESLint.
In this context, it would probably also make sense to expose the base reporter in the lib/reporters/index.js file to simplify writing custom reporters...
The text was updated successfully, but these errors were encountered:
In my context (we use the tool for projects at work) I can think of two reporters 😄
A TeamCity reporter: This can be done quite easy via Build Script Interaction. Obviously it would make sense to publish this one to the public.
And then we have some custom internal reporting platform which provides a central place for all kinds of our services/projects health (unit tests, code quality/analysis, E2E tests, open issues, etc.) with dashboards et al. I would like to report the results to this platform. This reporter probably cannot be made public since it would expose some internal information of ours.
Again... would be great if I could be done. I'm happy to assist, e.g. by testing a prerelease version...
Hi,
Currently it's only possible to select one of the build in reporters.
It would be great if custom reporter could be specified via CLI or
.jsinspectrc
config file. It would enable the creation of custom reporters (in separate npm packages)... like it is possible e.g. in JSCPD or ESLint.In this context, it would probably also make sense to expose the base reporter in the
lib/reporters/index.js
file to simplify writing custom reporters...The text was updated successfully, but these errors were encountered: