summaryrefslogtreecommitdiff
path: root/tools/.editorconfig
diff options
context:
space:
mode:
Diffstat (limited to 'tools/.editorconfig')
-rw-r--r--tools/.editorconfig16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/.editorconfig b/tools/.editorconfig
new file mode 100644
index 0000000..0c412a3
--- /dev/null
+++ b/tools/.editorconfig
@@ -0,0 +1,16 @@
+root = true
+
+# Defaults
+[*]
+indent_style = space
+indent_size = 4
+tab_width = 4
+charset = utf-8
+insert_final_newline = true
+trim_trailing_whitespace = true
+max_line_length = 100
+
+[Makefile*]
+indent_style = tab
+tab_width = 8
+indent_size = 8