From 507c65c7ac655c1798a33f38a9a52ed10c8da63b Mon Sep 17 00:00:00 2001 From: Alistair Thomas Date: Tue, 22 Aug 2017 16:39:30 +0100 Subject: [PATCH] Add .editorconfig file EditorConfig (http://editorconfig.org/) has become the de facto standard for defining the use of white space in project files. Code editors then choose the right settings automatically when a file is edited. https://bugzilla.gnome.org/show_bug.cgi?id=786620 --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..591993262 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf + +[*.{vala,vapi,gs,metadata}] +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true + +[Makefile.am] +indent_style = tab + +[meson.build] +trim_trailing_whitespace = true -- 2.47.3