From 691a7b1299b9ec952c83dfb95bc091a2713b03f0 Mon Sep 17 00:00:00 2001 From: Anders Eknert Date: Mon, 15 Apr 2024 18:16:56 +0200 Subject: [PATCH] Fix wrong category for `double-negative` rule 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