Duhemm / sbt-errors-summary

sbt plugin to show a summary of compilation messages.
MIT License
201 stars 11 forks source link

Reporter configuration #15

Closed Duhemm closed 7 years ago

Duhemm commented 7 years ago

Currently, it supports only 2 configuration options:

The configuration for the reporter can be set like this:

reporterConfig in (Compile, compile) := ReporterConfig(colors = false, shortenPaths = false)
reporterConfig in (Test, compile) := ReporterConfig(colors = true, shortenPaths = true)

This would result in different reporter configurations used to compile the main and test targets.