diff options
author | Henrique Lacreta Alves <henriquelalves@gmail.com> | 2024-05-05 00:22:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-05 00:22:12 +0300 |
commit | 72fc0084e45314c7ebfa641f2a20e2ecff358914 (patch) | |
tree | 11b5a5437f8c112beb8bdc39c172a2ff53a34571 /.editorconfig | |
parent | 510a5d76180f30f1dd75a05927bbcb10bfae8da8 (diff) | |
parent | 02b80cef1ad56565e181ddd30142bd9ddfc10d74 (diff) | |
download | gamejam-slgj-2024-72fc0084e45314c7ebfa641f2a20e2ecff358914.tar.gz gamejam-slgj-2024-72fc0084e45314c7ebfa641f2a20e2ecff358914.tar.bz2 gamejam-slgj-2024-72fc0084e45314c7ebfa641f2a20e2ecff358914.zip |
Merge pull request #2 from gilzoide/standardize-c-indentation
Standardize C indentation
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..335540e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true + +[*.{c,h}] +indent_style = space +indent_size = 2 |