From a48c6ae9276cd4825fce95bcd2cbab10b08e462b Mon Sep 17 00:00:00 2001 From: UserMandhapati Date: Sat, 31 Jan 2026 14:55:43 +0100 Subject: [PATCH] chore: add .yamllint configuration Added a .yamllint file to enforce consistent formatting and syntax rules for all YAML configuration files in the repository. --- .yamllint | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .yamllint diff --git a/.yamllint b/.yamllint new file mode 100644 index 00000000..579edb0a --- /dev/null +++ b/.yamllint @@ -0,0 +1,10 @@ +extends: default + +rules: + line-length: + max: 120 + allow-non-breakable-words: true + indentation: + spaces: 2 + truthy: + allowed-values: ['true', 'false', 'yes', 'no']