From 48aa04d45e1f5d3c8d26336578959cc72d7416b9 Mon Sep 17 00:00:00 2001 From: Dwi Siswanto Date: Sun, 23 Jul 2023 22:10:51 +0700 Subject: [PATCH] build: update yamllint config (#7743) This commit updates the `.yamllint` configuration file by forbid the usage of `braces` and `brackets` in the template file which coincidentally was introduced in the commit 249ad821ec85c3bd2dc503a35a9a79e542800c7a. These changes aim to enhance the overall template syntax quality and maintain a consistent style throughout the Nuclei template files. Signed-off-by: Dwi Siswanto --- .yamllint | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.yamllint b/.yamllint index b7e17e0288..7792649366 100644 --- a/.yamllint +++ b/.yamllint @@ -18,4 +18,8 @@ rules: ignore-shebangs: true min-spaces-from-content: 1 empty-lines: - max: 5 \ No newline at end of file + max: 5 + braces: + forbid: true + brackets: + forbid: true \ No newline at end of file