aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2025-03-10 22:52:15 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2025-03-10 22:52:15 +0100
commit1a74e6a1856673072a61abd0861759901bc2d939 (patch)
treebb1b54a7c27280d7d9e83c031233dd8402f1e721 /.editorconfig
parentff22231f8a2f3714df701fd7c12b07915adc15e9 (diff)
downloadcode.nes-1a74e6a1856673072a61abd0861759901bc2d939.tar.gz
code.nes-1a74e6a1856673072a61abd0861759901bc2d939.zip
Bring code style to better standards
Be more careful on everything and try to follow along style.nes from my repository. This might change in the future, but it's in a much better state now. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig11
1 files changed, 8 insertions, 3 deletions
diff --git a/.editorconfig b/.editorconfig
index 3433fac..c420a82 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -1,8 +1,13 @@
root = true
-[{*.{s,S},Makefile}]
+[*]
charset = utf-8
-end_of_line = lf
+indent_size = 4
insert_final_newline = true
+end_of_line = lf
+
+[*.{s,S}]
indent_style = space
-indent_size = 4
+
+[Makefile]
+indent_style = tab