diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2022-11-05 11:14:20 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2022-11-05 11:14:20 +0100 |
| commit | 7daade1c4d3756e67fe14c87d5212f0c9f77205c (patch) | |
| tree | 24030f9b373b3d110a641e3f3e68a43ab47d6436 /src/main/groovy/FlycheckAndroidExperimentalPlugin.groovy | |
| parent | b3467614c5917a1c24afa30ae9101984f09a0b0b (diff) | |
Add support for kotlin by adding flycheck-android-kotlin checker
Diffstat (limited to 'src/main/groovy/FlycheckAndroidExperimentalPlugin.groovy')
| -rw-r--r-- | src/main/groovy/FlycheckAndroidExperimentalPlugin.groovy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/groovy/FlycheckAndroidExperimentalPlugin.groovy b/src/main/groovy/FlycheckAndroidExperimentalPlugin.groovy index 6493812..0252e37 100644 --- a/src/main/groovy/FlycheckAndroidExperimentalPlugin.groovy +++ b/src/main/groovy/FlycheckAndroidExperimentalPlugin.groovy @@ -7,5 +7,7 @@ class FlycheckAndroidExperimentalPlugin implements Plugin<Project> { void apply(Project project) { project.task('flycheckAndroidJava', type: FlycheckAndroidJavaTask) + project.task('flycheckAndroidKotlin', + type: FlycheckAndroidKotlinTask) } } |
