From 3250b1f75af3293b9a1e492795764e72f0722634 Mon Sep 17 00:00:00 2001 From: Ben Stickley <35735118+bestickley@users.noreply.github.com> Date: Mon, 26 Jan 2026 14:23:40 -0500 Subject: [PATCH] Update no-unassigned-import.md Signed-off-by: Ben Stickley <35735118+bestickley@users.noreply.github.com> --- .../guide/usage/linter/rules/import/no-unassigned-import.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/guide/usage/linter/rules/import/no-unassigned-import.md b/src/docs/guide/usage/linter/rules/import/no-unassigned-import.md index 2c2e7b7612a..0ed1731987b 100644 --- a/src/docs/guide/usage/linter/rules/import/no-unassigned-import.md +++ b/src/docs/guide/usage/linter/rules/import/no-unassigned-import.md @@ -64,7 +64,7 @@ default: `[]` A list of glob patterns to allow unassigned imports for specific modules. For example: -`{ "allow": ["*.css"] }` will allow unassigned imports for any module ending with `.css`. +`{ "allow": ["**/*.css"] }` will allow unassigned imports for any module ending with `.css`. ## How to use