├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── funcTests ├── kotlin │ └── com │ │ └── github │ │ └── CodeLinesPluginTest.kt └── resources │ └── TestClass.java └── main └── kotlin └── com └── github └── CodeLinesCounterPlugin.kt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'code-lines-counter' 2 | 3 | -------------------------------------------------------------------------------- /src/funcTests/kotlin/com/github/CodeLinesPluginTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/src/funcTests/kotlin/com/github/CodeLinesPluginTest.kt -------------------------------------------------------------------------------- /src/funcTests/resources/TestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/src/funcTests/resources/TestClass.java -------------------------------------------------------------------------------- /src/main/kotlin/com/github/CodeLinesCounterPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurpSG/code-lines-counter-gradle-plugin/HEAD/src/main/kotlin/com/github/CodeLinesCounterPlugin.kt --------------------------------------------------------------------------------