From 6aa53e24401d57ae2cd4a6eff3a1f12f7e0cada7 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Wed, 3 Nov 2021 13:00:21 +0100 Subject: [PATCH] Add a config for YAMLLint (#653) Co-authored-by: Abhinav Singh --- .yamllint | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .yamllint diff --git a/.yamllint b/.yamllint new file mode 100644 index 00000000..3b3a84c8 --- /dev/null +++ b/.yamllint @@ -0,0 +1,8 @@ +--- +extends: default + +rules: + indentation: + level: error + indent-sequences: false +...