diff --git a/build.gradle b/build.gradle index f88b430..b233ef1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,5 @@ plugins { id "java" - id 'com.diffplug.spotless' version "6.12.0" id "edu.wpi.first.GradleRIO" version "2023.4.3" } @@ -9,20 +8,6 @@ targetCompatibility = JavaVersion.VERSION_11 def ROBOT_MAIN_CLASS = "frc.robot.Main" -spotless { - java { - target fileTree('.') { - include '**/*.java' - exclude '**/build/**', '**/build-*/**' - } - // toggleOffOn() - googleJavaFormat() - // removeUnusedImports() - // trimTrailingWhitespace() - // endWithNewline() - } -} - // Define my targets (RoboRIO) and artifacts (deployable files) // This is added by GradleRIO's backing project DeployUtils. deploy {