diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2020-05-05 06:41:10 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2020-05-06 05:48:15 +0200 |
commit | 411b12d09ddb47722acf6d354c17ee9ee5228964 (patch) | |
tree | ef770c7760958dc65e4f437136fc7fbba74b31b9 | |
parent | 3a6c9220fffe1836f2f1b8e8618543791bd3901f (diff) | |
download | pacman-411b12d09ddb47722acf6d354c17ee9ee5228964.tar.gz pacman-411b12d09ddb47722acf6d354c17ee9ee5228964.tar.xz |
editorconfig: set meson indentation style
meson.build gets two-space indents, but our global tabbed default was
overriding this.
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | .editorconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index efea87bf..220ffbc8 100644 --- a/.editorconfig +++ b/.editorconfig @@ -16,5 +16,9 @@ indent_style = tab [{NEWS,HACKING}] indent_style = space +[meson.build] +indent_style = space +indent_size = 2 + [*.py] indent_style = space |