From 5a4fc20c6f4a631a4ab79c88a413bf1b5be83c3d Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Thu, 12 May 2022 18:55:06 +0200 Subject: [PATCH] Add editorconfig --- .editorconfig | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..29f9fcd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,29 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[meson.build] +indent_size = 2 +tab_size = 2 +indent_style = space + +[*.{c,h,c.in,h.in}] +indent_size = 2 +tab_size = 2 +indent_style = space +max_line_length = 100 + +[*.css] +indent_size = 2 +tab_size = 2 +indent_style = space + +[*.{xml,ui}] +indent_size = 2 +tab_size = 2 +indent_style = space +