From 9a70919c4a1c4a02bc955ef9b93cc0ff91217b6b Mon Sep 17 00:00:00 2001 From: Pedro Rezende Date: Fri, 30 Jun 2023 15:37:28 +0200 Subject: [PATCH] feat: adding editorconfig defaults --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..f9550c23 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# 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 +[*.{js,py,tsx,jsx,ts}] +charset = utf-8 +indent_size = 2 +indent_style = space \ No newline at end of file