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.
This commit is contained in:
Dylan Baker 2018-08-29 16:14:54 -07:00 committed by Adam Jackson
parent 489fa0df11
commit 761f36c3c8

11
.editorconfig Normal file
View File

@ -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