Browse Source

yamllint: enable truthy rule (#8698)

* yamllint: enable truthy rule
Ilya Mashchenko 4 years ago
parent
commit
7b59e14afd
1 changed files with 3 additions and 1 deletions
  1. 3 1
      .yamllint.yml

+ 3 - 1
.yamllint.yml

@@ -30,4 +30,6 @@ rules:
   octal-values: enable
   quoted-strings: disable
   trailing-spaces: enable
-  truthy: disable
+  truthy:
+    check-keys: false
+    allowed-values: ["true", "false", "yes", "no"]