From 312a1fad1b826be600d91f1efc8e75de1f593cc9 Mon Sep 17 00:00:00 2001 From: Marc Bernard <59966492+mbtools@users.noreply.github.com> Date: Sun, 19 Jan 2025 20:48:35 +0100 Subject: [PATCH] Add comment for selecting all files to 3.3 spec Not everyone is familiar with glob patterns. The additional comment helps avoid the common pitfall of using `*` to select everything (as in dep5). --- site/content/en/spec-3.3.md | 1 + 1 file changed, 1 insertion(+) diff --git a/site/content/en/spec-3.3.md b/site/content/en/spec-3.3.md index f937de4..f404361 100644 --- a/site/content/en/spec-3.3.md +++ b/site/content/en/spec-3.3.md @@ -253,6 +253,7 @@ to zero or more Covered Files. It has the following keys: - `*` matches everything except forward slashes (i.e. path separators). - `**` and `**/` match everything including forward slashes (i.e. path separators). + - Use `**/*` to match all files in a repository. - In order to escape an asterisk and include it verbatim, prefix it with `\\`. You cannot prefix it with `\` because that is invalid TOML. In order to include a backslash verbatim, use `\\\\`. `\\` followed by any other