summaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2017-06-11 10:08:37 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2017-06-11 10:08:37 +0100
commit8b4ce0ba86d0396bde2546dd248c863876da4106 (patch)
tree72ac2147cda97ddac20144a60e7b0644a0cc303f /.editorconfig
parent8052642eadfb95b244f978b10889dff51f9133f5 (diff)
downloadlibnslog-8b4ce0ba86d0396bde2546dd248c863876da4106.tar.gz
libnslog-8b4ce0ba86d0396bde2546dd248c863876da4106.tar.bz2
Another step toward filters working
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig19
1 files changed, 19 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..f24cd50
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,19 @@
+# This is an EditorConfig file
+# Learn more at http://editorconfig.org
+
+root = true
+
+# All files are UNIX-style and UTF-8
+[*]
+end_of_line = lf
+insert_final_newline = true
+charset = utf-8
+trim_trailing_whitespace = true
+
+# Makefiles use tabs
+[Makefile]
+indent_style = tab
+
+# C code uses tabs
+[*.{c,h}]
+indent_style = tab