diff options
author | Bennett Goble <signal@lindenlab.com> | 2024-05-01 08:22:19 -0700 |
---|---|---|
committer | Bennett Goble <signal@lindenlab.com> | 2024-05-01 08:23:35 -0700 |
commit | c785a0e955478dcad867af55bcd44111a718aefd (patch) | |
tree | 96409da80c0096522645836f1b646912aa250138 /.editorconfig | |
parent | f886a438ed11468a90ecca9ba8046a6719f0402c (diff) |
Add editorconfig
Provide a basic editorconfig file with this repository's defaults.
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..9ac24be468 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[Makefile] +indent_style = tab + +[*.{yml,yaml}] +indent_size = 2 |