From 021c4f34e34053fcc3db14c1a2046311f738da88 Mon Sep 17 00:00:00 2001 From: Anders Eknert Date: Mon, 15 Apr 2024 19:14:11 +0200 Subject: [PATCH] Fix wrong category for `double-negative` rule (#652) Signed-off-by: Anders Eknert --- docs/rules/style/double-negative.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules/style/double-negative.md b/docs/rules/style/double-negative.md index 91efff3f..3950e8c0 100644 --- a/docs/rules/style/double-negative.md +++ b/docs/rules/style/double-negative.md @@ -2,7 +2,7 @@ **Summary**: Avoid double negatives -**Category**: Community +**Category**: Style **Avoid** ```rego @@ -50,7 +50,7 @@ This linter rule provides the following configuration options: ```yaml rules: - community: + style: double-negative: # one of "error", "warning", "ignore" level: error