From df09f7c73529711b79d9989d97a6b7faa060150a Mon Sep 17 00:00:00 2001 From: Dave Thaler Date: Tue, 29 Oct 2024 09:09:21 -0700 Subject: [PATCH] Don't warn about use of "on" as a YAML key (#562) Per documentation at https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.truthy Signed-off-by: Dave Thaler Co-authored-by: Dave Thaler --- .yamllint.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.yamllint.yml b/.yamllint.yml index 8d6330fd..4f5ab114 100644 --- a/.yamllint.yml +++ b/.yamllint.yml @@ -6,3 +6,5 @@ extends: default rules: line-length: disable + truthy: + check-keys: false