lots more

This commit is contained in:
Riley Park
2020-11-08 12:27:06 -08:00
parent f873debb72
commit 7ca40094cb
133 changed files with 2163 additions and 2021 deletions

View File

@@ -1,8 +1,11 @@
checkstyle {
def configDirectory = new File(project.rootDir, ["config", "checkstyle"].join(File.separator))
toolVersion '8.14'
configFile new File(project.rootDir, ['config', 'checkstyle', 'checkstyle.xml'].join(File.separator))
configFile new File(configDirectory, "checkstyle.xml")
configProperties = [configDirectory: configDirectory.getAbsolutePath()]
// The build should immediately fail if we have errors.
maxErrors = 0
maxWarnings = 0
}
}