From c2047d1b45cd9c4c846842226e7bdb3e418bf25f Mon Sep 17 00:00:00 2001 From: Genta Kamitani Date: Fri, 29 Oct 2021 18:08:22 +0900 Subject: [PATCH] doc: respect changes made by #25 --- v2/configuration.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v2/configuration.go b/v2/configuration.go index 0fb56164..6531e9e6 100644 --- a/v2/configuration.go +++ b/v2/configuration.go @@ -64,7 +64,8 @@ type Configuration struct { // to group errors and how to display them on your dashboard. You should // include any packages that are part of your app, and exclude libraries // and helpers. You can list wildcards here, and they'll be expanded using - // filepath.Glob. The default value is []string{"main*"} + // filepath.Glob. For matching subpackages within a package you may use the + // `**` notation. The default value is []string{"main*"} ProjectPackages []string // The SourceRoot is the directory where the application is built, and the