From 023e43e61c9d02895ea1bb810b5ae47c32905737 Mon Sep 17 00:00:00 2001 From: Serhii Tereshchenko Date: Mon, 16 Jun 2025 16:24:23 +0300 Subject: [PATCH] dev: Add .editorconfig for consistent file formatting --- .editorconfig | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..08de6e75 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,34 @@ +# this file helps keeping consistent code style in all the project. IDEs will +# automatically use the code style as defined in this file +# see https://editorconfig.org/ +root=true +# Unix-style newlines with a newline ending every file +[*] +end_of_line=lf +insert_final_newline=true +charset=utf-8 +trim_trailing_whitespace=true + +[*.vala] +indent_style=space +indent_size=4 + +[*.xml] +indent_style=space +indent_size=2 + +[*.css] +indent_style=space +indent_size=2 + +[*.json] +indent_style=space +indent_size=4 + +[meson.build] +indent_style=space +indent_size=2 + +[.gitlab-ci.yml] +indent_style=space +indent_size=2