summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnish Athalye <[email protected]>2019-09-30 20:38:17 -0400
committerAnish Athalye <[email protected]>2019-09-30 20:38:17 -0400
commit78f863f8aead6346dfdfc62e91af25c9383e25a7 (patch)
tree4384beab917d04c11424eb27e8234dcd1276ca6d
parentd4416744777740f74a19294d332697639714d8d4 (diff)
downloadxv6-labs-78f863f8aead6346dfdfc62e91af25c9383e25a7.tar.gz
xv6-labs-78f863f8aead6346dfdfc62e91af25c9383e25a7.tar.bz2
xv6-labs-78f863f8aead6346dfdfc62e91af25c9383e25a7.zip
Add editorconfig
-rw-r--r--.editorconfig19
1 files changed, 19 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..cd9dfc3
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,19 @@
+; https://editorconfig.org
+
+root = true
+
+[*]
+end_of_line = lf
+insert_final_newline = true
+indent_style = space
+indent_size = 4
+
+[*.{c,h}]
+indent_size = 2
+
+[*.S]
+indent_size = 8
+
+[Makefile]
+indent_style = tab
+indent_size = 8