diff --git a/README.md b/README.md index 2d80ea1..5937339 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build.gradle.kts b/build.gradle.kts index 24d021d..01becba 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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