summaryrefslogtreecommitdiff
path: root/platform/android/checkstyle.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/checkstyle.gradle')
-rw-r--r--platform/android/checkstyle.gradle16
1 files changed, 0 insertions, 16 deletions
diff --git a/platform/android/checkstyle.gradle b/platform/android/checkstyle.gradle
deleted file mode 100644
index 69f7f41ff4..0000000000
--- a/platform/android/checkstyle.gradle
+++ /dev/null
@@ -1,16 +0,0 @@
-apply plugin: 'checkstyle'
-
-checkstyle.toolVersion = '7.1'
-
-task checkstyle(type: Checkstyle) {
- description 'Checks if the code adheres to coding standards'
- group 'verification'
-
- configFile = new File(rootDir, "checkstyle.xml")
- source 'src'
- include '**/*.java'
- exclude '**/gen/**'
-
- classpath = files()
- ignoreFailures = false
-}