aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig27
1 files changed, 27 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..89cb381
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,27 @@
1root = true
2
3[*]
4end_of_line = lf
5insert_final_newline = true
6trim_trailing_whitespace = true
7charset = utf-8
8
9[*.lua]
10indent_style = space
11indent_size = 4
12
13[*.lua]
14indent_style = space
15indent_size = 2
16
17[*.rockspec]
18indent_style = space
19indent_size = 2
20
21[*.md]
22indent_style = space
23indent_size = 2
24
25[Makefile]
26indent_style = tab
27indent_size = 4