From 5245b9696c4b845e02d817a6d0638b906d72223b Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Tue, 14 Jan 2025 03:13:39 +0100 Subject: [PATCH] feat: Add editorconfig --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..226849e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# EditorConfig is awesome: https://editorconfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true + +# Matches multiple files with brace expansion notation +# Set default charset +charset = utf-8 + +# 4 space indentation +[*.py] +indent_style = space +indent_size = 4