From 63a463634158eea186ee835453f73f63f0fa91aa Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Sat, 22 Mar 2025 05:41:30 -0400 Subject: [PATCH] chore(healthcheck): remove tmp fix of stdout & stderr file --- pkg/healthcheck/forbidden.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/healthcheck/forbidden.go b/pkg/healthcheck/forbidden.go index 92304fe..912bf80 100644 --- a/pkg/healthcheck/forbidden.go +++ b/pkg/healthcheck/forbidden.go @@ -37,10 +37,6 @@ func getForbiddens(root string) ([]string, error) { if err != nil { return err } - // TODO: remove this temporary fix for stdout and stderr - if relPath == "stdout" || relPath == "stderr" { - return nil - } match := ignore.Relative(relPath, true) // Check if the relative file path should be ignored based on the .gitignore rules