From b5ac53b480e8509b2ad1b152553ac9104976803d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Floure?= Date: Thu, 23 Jan 2020 15:02:00 +0100 Subject: [PATCH] Add EditorConfig enforcing tabs --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..09d4148 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# See https://EditorConfig.org for documentation. + +# top-most EditorConfig file +root = true + +# Indent with tabs by default. +[*] +indent_style = tab + +# Use spaces for YAML, Markdown. +[*.md,*.mkd,*.yml,*.yaml] +indent_style = space +indent_size = 2