From 9b3f7fb5480cea3036a88fca1f6be2fe9c108098 Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Tue, 5 Sep 2023 11:59:12 -0400 Subject: [PATCH] [build] Exclude IntelliJ folders from spotless XML (#5602) --- 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 333a207aef..49332bf748 100644 --- a/shared/java/javastyle.gradle +++ b/shared/java/javastyle.gradle @@ -53,7 +53,7 @@ if (!project.hasProperty('skipJavaFormat')) { format 'xml', { target fileTree('.') { include '**/*.xml' - exclude '**/build/**', '**/build-*/**', '**/bin/**' + exclude '**/build/**', '**/build-*/**', '**/bin/**', '**/.idea/**', '**/.run/**' } eclipseWtp('xml') trimTrailingWhitespace()