From e4d735e381c5aca4be51c69a981cf9c248e6ea11 Mon Sep 17 00:00:00 2001 From: Oleg A Date: Mon, 2 Aug 2021 16:14:20 +0300 Subject: [PATCH] feat: add .editorconfig support --- .editorconfig | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..9a80d2d5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,24 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.py] +indent_style = space +indent_size = 4 +max_line_length = 99 + +[*.{yml, yaml}] +indent_style = space +indent_size = 2 + +[*.{md,txt}] +indent_style = space +indent_size = 4 +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab