Minor naming fix

This commit is contained in:
Artem Tsebrov 2023-04-06 18:00:28 +03:00
parent 93151c6214
commit a0f79fd05e
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ Reports are stored in "$pwd/build/reports/kotlin-detekt-${project.name}.html".
- `gradle :diktatFix` - if possible, fix not formatted code. Known issues: full fix may require 1+ launch in order to apply all rules; some rules potentially may break code syntax.
By setting environment variable `TASKS_FILE_REPORT_ENABLED`(true, false) you may configure raw console output or html file as report.
Reports are stored in "$pwd/build/reports/diktat-check-report.html".
Reports are stored in "$pwd/build/reports/diktat-report.html".
## common

View File

@ -53,7 +53,7 @@ diktat {
?: true
reporter = if (tasksFileReportEnabled) "html" else "plain"
output = if (tasksFileReportEnabled) "${project.buildDir}/reports/diktat-check-report.html" else String()
output = if (tasksFileReportEnabled) "${project.buildDir}/reports/diktat-report.html" else String()
diktatConfigFile = file("$rootDir/diktat-analysis.yml")
ignoreFailures = true
debug = false