summaryrefslogtreecommitdiff
path: root/platform/android/checkstyle.gradle
blob: 69f7f41ff48cef0d642483470803798c79a632fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}