diff options
| author | Benjamin Linskey | 2026-05-30 03:46:24 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2026-05-30 03:46:24 -0400 |
| commit | 1e4db09c137061623603c606f0e7e8ffdc807606 (patch) | |
| tree | 3f408987a6e9fe58553e6a84da7b4332499154fa | |
| parent | a07297bc8f6d44a6a652b52e5326a42e19f65eb8 (diff) | |
| download | rogue-1e4db09c137061623603c606f0e7e8ffdc807606.tar.gz | |
Add .editorconfig
A cursory look at rogue.h indicates that some parts of the file were composed with eight-character tabs and some were created with four-character tabs. Use eight in accordance with tradition.
| -rw-r--r-- | .editorconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4a3a754 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +[Makefile] +indent_style = tab +indent_size = 8 + +[*.{c,h}] +indent_style = tab +indent_size = 8 |