From 3a0fe2fe92af0766318b526033a21821f2c976a4 Mon Sep 17 00:00:00 2001 From: Ben Chatelain Date: Sun, 18 Feb 2024 11:36:03 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Configure=20yamllint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .yamllint.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .yamllint.yml diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 0000000..bf64f88 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,17 @@ +# https://yamllint.readthedocs.io/en/stable/configuration.html#default-configuration +--- +extends: default +locale: en_US.UTF-8 + +ignore-from-file: .gitignore + +rules: + line-length: + max: 120 + level: warning + # https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.truthy + truthy: + allowed-values: ["true", "false"] + check-keys: false + # Disables fallse positives on GHA workflow `on:` + level: warning