From 761f36c3c83374324ddbb0f0bd8ba326c232d2cf Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 29 Aug 2018 16:14:54 -0700 Subject: [PATCH] Add .editorconfig file This sets the style for meson (which uses the upstream style, 2 space indent with no tabs), and sets the tab_width to 8 per the CODING_STYLE document. --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..5153bb0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# To use this config on you editor, follow the instructions at: +# http://editorconfig.org + +root = true + +[*] +tab_width = 8 + +[meson.build,meson_options.txt] +indent_style = space +indent_size = 2 -- 2.34.1