From 480ec4ed586e715b06c3d3a5fcdfa4834246d7e2 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Wed, 30 Nov 2022 10:05:59 +0100 Subject: [PATCH] Inherit `yamllint` config from the default preset This patch also fixes the misconfigured rules definition. --- .yamllint | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.yamllint b/.yamllint index 97c08cf..68bf02c 100644 --- a/.yamllint +++ b/.yamllint @@ -1,2 +1,10 @@ -indentation: - indent-sequences: false +--- + +extends: default + +rules: + indentation: + level: error + indent-sequences: false + +...