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