From 69f4dcbf1d4765b6434545fb4d542909b0246974 Mon Sep 17 00:00:00 2001 From: Charlie Egan Date: Thu, 6 Jun 2024 13:27:19 +0100 Subject: [PATCH] docs: set the rule type for unresolved-import (#804) This was missing and should be set for aggregate rules. Signed-off-by: Charlie Egan --- docs/rules/imports/unresolved-import.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/rules/imports/unresolved-import.md b/docs/rules/imports/unresolved-import.md index 84d9981e..297d4faf 100644 --- a/docs/rules/imports/unresolved-import.md +++ b/docs/rules/imports/unresolved-import.md @@ -4,6 +4,8 @@ **Category**: Imports +**Type**: Aggregate - only runs when more than one file is provided for linting + **Avoid** Imports that can't be resolved. @@ -38,7 +40,7 @@ import data.users This linter rule provides the following configuration options: ```yaml -rules: +rules: imports: unresolved-import: # one of "error", "warning", "ignore"