From 7331fd6ba6de5acb2d89e96df692774be6606273 Mon Sep 17 00:00:00 2001 From: Arjun Raja Yogidas Date: Thu, 5 Sep 2024 20:50:26 +0000 Subject: [PATCH] add yamllint config Signed-off-by: Arjun Raja Yogidas --- .yamllint.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .yamllint.yml diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 0000000..c2dfe13 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,10 @@ +extends: default +rules: + trailing-spaces: + # issue templates intentionally have some whitespace + ignore: .github/ISSUE_TEMPLATE/ + document-start: disable # preference, can enable if desired + comments: disable # doesn't like in-line comments like this + line-length: disable # hard to enforce <80 chars for some cmds + truthy: + allowed-values: ['true', 'false', 'on']