From 7c9f9f1dd7eb8e712d1426acb621686310937d8c Mon Sep 17 00:00:00 2001 From: Dave Thaler Date: Tue, 29 Oct 2024 09:17:42 -0700 Subject: [PATCH] Don't warn about use of "on" as a YAML key (#90) 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 6ad6cf8..2c648b5 100644 --- a/.yamllint.yml +++ b/.yamllint.yml @@ -7,3 +7,5 @@ extends: default rules: line-length: disable trailing-spaces: disable + truthy: + check-keys: false