From 0eff3500855c693c07a5452b9b625b77bffd015c Mon Sep 17 00:00:00 2001 From: TheMagamed78 Date: Sat, 31 Jan 2026 15:12:45 +0100 Subject: [PATCH] chore: add .yamllint configuration Added a .yamllint file to enforce consistent formatting and prevent errors in GitHub Actions workflow files. --- .yamllint | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .yamllint diff --git a/.yamllint b/.yamllint new file mode 100644 index 00000000..ef1e7d7e --- /dev/null +++ b/.yamllint @@ -0,0 +1,11 @@ +extends: default + +rules: + line-length: + max: 120 + indentation: + spaces: 2 + truthy: + allowed-values: ['true', 'false'] + empty-lines: + max: 1