From c13c5122211874a92e20e1f5d8c74857cef31e94 Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Sun, 11 Aug 2024 02:27:47 -0400 Subject: [PATCH] [build] Spotless: ignore test json files (#6938) --- shared/java/javastyle.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/java/javastyle.gradle b/shared/java/javastyle.gradle index ebea73b75d..e2b713e7e6 100644 --- a/shared/java/javastyle.gradle +++ b/shared/java/javastyle.gradle @@ -48,7 +48,7 @@ spotless { target fileTree('.') { include '**/*.json' exclude '**/build/**', '**/build-*/**', '**/bin/**' - exclude '**/simgui-ds.json', '**/simgui-window.json', '**/simgui.json', '**/networktables.json' + exclude '**/simgui-ds.json', '**/simgui-window.json', '**/simgui.json', '**/networktables.json', '**/*test.json' } gson() .indentWithSpaces(2)