all: apply editor config
Parents:
5d37e201 file(s) changed
- .editorconfig +14 -0
.editorconfig
@@ -0,0 +1,14 @@
1 + root = true
2 +
3 + # General settings
4 + charset = utf-8
5 + trim_trailing_whitespace = true
6 +
7 + # Unix-style newlines with a newline ending every file
8 + end_of_line = lf
9 + insert_final_newline = true
10 +
11 + # By default all files are indented by two spaces
12 + [*]
13 + indent_style = space
14 + indent_size = 2