From 49aa1eee04e410f00912905d84eb85b03fbe7c09 Mon Sep 17 00:00:00 2001 From: Victorien Elvinger Date: Fri, 26 Jan 2024 15:52:43 +0100 Subject: [PATCH] refactor(website): remove underused glob pattern docs (#1683) --- website/src/content/docs/guides/how-biome-works.mdx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/website/src/content/docs/guides/how-biome-works.mdx b/website/src/content/docs/guides/how-biome-works.mdx index 51df6739db7c..ae2e4e0a8575 100644 --- a/website/src/content/docs/guides/how-biome-works.mdx +++ b/website/src/content/docs/guides/how-biome-works.mdx @@ -154,7 +154,6 @@ When both `include` and `ignore` are specified, Biome gives **precedence** to `i The syntax and meaning of these two options loosely follow the [globset rules](https://docs.rs/globset/latest/globset/#syntax) but without the ability to set options. -> - `?` matches any single character. > - `*` matches zero or more characters. > - `**` recursively matches directories but are only legal in three situations. > First, if the glob starts with \*\*/, then it matches @@ -166,11 +165,7 @@ The syntax and meaning of these two options loosely follow the [globset rules](h > the pattern, then it matches zero or more directories. Using `**` anywhere > else is illegal (N.B. the glob `**` is allowed and means "match everything"). > -> - `[ab]` matches `a` or `b` where `a` and `b` are characters. Use -> `[!ab]` to match any character except for `a` and `b`. > - Metacharacters such as `*` and `?` can be escaped with character class > notation. e.g., `[*]` matches `*`. Check the [wikipedia page](https://en.wikipedia.org/wiki/Glob_(programming)) for more information. - -