├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── kotlin │ └── me │ │ └── cassiano │ │ └── ktlint │ │ └── reporter │ │ └── html │ │ ├── HtmlReporter.kt │ │ └── HtmlReporterProvider.kt └── resources │ └── META-INF │ └── services │ └── com.pinterest.ktlint.core.ReporterProvider └── test └── kotlin └── me └── cassiano └── ktlint └── reporter └── html └── HtmlReporterTest.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ktlint-html-reporter' 2 | 3 | -------------------------------------------------------------------------------- /src/main/kotlin/me/cassiano/ktlint/reporter/html/HtmlReporter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/src/main/kotlin/me/cassiano/ktlint/reporter/html/HtmlReporter.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/cassiano/ktlint/reporter/html/HtmlReporterProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/src/main/kotlin/me/cassiano/ktlint/reporter/html/HtmlReporterProvider.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/com.pinterest.ktlint.core.ReporterProvider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/src/main/resources/META-INF/services/com.pinterest.ktlint.core.ReporterProvider -------------------------------------------------------------------------------- /src/test/kotlin/me/cassiano/ktlint/reporter/html/HtmlReporterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcassiano/ktlint-html-reporter/HEAD/src/test/kotlin/me/cassiano/ktlint/reporter/html/HtmlReporterTest.kt --------------------------------------------------------------------------------