From 4ef69bcb0ec7df0068928d004bbb4969716caf1e Mon Sep 17 00:00:00 2001 From: Rodrigo Lazo Paz Date: Thu, 2 Oct 2025 11:15:08 -0400 Subject: [PATCH] [Infra] Ignore `release_report.md` from formatter The file is auto generated and not intended to be consumed directly, thus formatting isn't a priority. Also, since it's generated during the release process, the only way of running the formatter would be checking out the branch, which is not necessary for any other step of the process. --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index b984eba05a3..dab824bdf4b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -62,7 +62,7 @@ fun Project.applySpotless() { } format("styling") { target("src/**/*.md", "*.md", "docs/**/*.md") - targetExclude("**/third_party/**", "src/test/resources/**") + targetExclude("**/third_party/**", "src/test/resources/**", "release_report.md") prettier().config(mapOf("printWidth" to 100, "proseWrap" to "always")) } }