From 924816b95decda64149a53f2bc1343aa061a2b7a Mon Sep 17 00:00:00 2001 From: Matthias Endler Date: Mon, 11 Dec 2023 14:58:54 +0100 Subject: [PATCH] Update excluding-paths.md to reflect that it's a regex match --- recipes/excluding-paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/excluding-paths.md b/recipes/excluding-paths.md index d6005d8..4b2dfc8 100644 --- a/recipes/excluding-paths.md +++ b/recipes/excluding-paths.md @@ -18,7 +18,7 @@ exclude_path = ["node_modules"] Regular expressions are also supported. ```toml -exclude_path = ["node_modules", "^./dir/", "*/dev/*"] +exclude_path = ["node_modules", "^./dir/", ".*/dev/.*"] ``` [Here](https://github.com/mre/endler.dev/blob/50d8d5f90dbafa445c9455e420a40f8866f3e1c7/lychee.toml#L28) is an example config file.