From 94c036d72b0269b4c1e0e0776267ce375adb6870 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 4 Jun 2020 15:40:08 +1000 Subject: [PATCH] editorconfig: add settings for the .gitlab-ci.yml file Different indentation and we don't want a fixed line length here, wrapping yaml is prone to introduce bugs. Signed-off-by: Peter Hutterer Reviewed-by: Pekka Paalanen --- .editorconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.editorconfig b/.editorconfig index 50b7740..d92e5e9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -17,3 +17,8 @@ tab_width = 8 [*.py] indent_style = space indent_size = 4 + +[*.yml] +indent_style = space +indent_size = 2 +max_line_length = off