From: Dylan Baker Date: Wed, 29 Aug 2018 23:14:54 +0000 (-0700) Subject: Add .editorconfig file X-Git-Tag: pixman-0.38.0~5^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=761f36c3c83374324ddbb0f0bd8ba326c232d2cf;p=platform%2Fupstream%2Fpixman.git 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. --- 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