From 84892e07bada87f9b141834cae68417948189dc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=8D=9A=E4=BB=81=28Buo-ren=20Lin=29?= Date: Mon, 26 Aug 2024 03:07:39 +0800 Subject: [PATCH] fixup! lint(yaml): Only use `true` and `false` boolean values MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Don't change yamllint policy as other components still not compliant. Signed-off-by: ๆž—ๅšไป(Buo-ren Lin) --- .yamllint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamllint b/.yamllint index 10991be..2c9c514 100644 --- a/.yamllint +++ b/.yamllint @@ -133,5 +133,5 @@ rules: # Use this rule to forbid non-explictly typed truthy values other than `true` and `false`, for example `YES`, `False` and `off`. # https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.truthy truthy: - allowed-values: ['true', 'false'] + level: warning ...