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
Now you can set only one reporter in the diktat-gradle-plugin plugin using the report configuration parameter or by setting
the "githubActions = true".
Setting the reporter to sarif disables error reporting to stdout.
It would be nice if we could enable both of them.
The text was updated successfully, but these errors were encountered:
It will require changes in diktat configuration. Example:
// enables sarif reporting to a single file by flag: `diktat.githubActions`
githubActions = findProperty("diktat.githubActions")?.toString()?.toBoolean() ?:false
reporters {
// enables plain reporters with output to stdout
plain()
}
Now you can set only one reporter in the diktat-gradle-plugin plugin using the
report
configuration parameter or by settingthe "githubActions = true".
Setting the reporter to
sarif
disables error reporting to stdout.It would be nice if we could enable both of them.
The text was updated successfully, but these errors were encountered: