From 19f142937c1905c2cd03ea182b0dc9ca94abc7a7 Mon Sep 17 00:00:00 2001 From: Eric Redon Date: Wed, 6 May 2020 12:36:22 +0200 Subject: [PATCH] Initial commit of .editorconfig --- .editorconfig | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f39c731 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,23 @@ +# https://editorconfig.org/ + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +trim_trailing_whitespace = true + +# Overrides for Python files +[*.py] +indent_size = 4 + +# Overrides for HTML files +[*.html] +indent_size = 2 + +# Overrides for Makefile +[Makefile] +indent_size = 4 +indent_style = tabs