From 1675fbca5ff52cdf121dab1baaa2ac3a7df7c510 Mon Sep 17 00:00:00 2001 From: mtbarr Date: Fri, 4 Apr 2025 03:50:45 -0300 Subject: [PATCH] feat: add .editorconfig for consistent coding styles --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..72ff6c8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# EditorConfig is awesome: https://EditorConfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true \ No newline at end of file