Skip to content

Commit 53780c0

Browse files
authored
Merge pull request #1654 from hzeller/add-editorconfig
Add .editorconfig to tell editors/IDEs basic whitespace rules.
2 parents fa683da + 874e157 commit 53780c0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor config file, see http://editorconfig.org/
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
[*.{h,c,cpp}]
11+
indent_style = space
12+
indent_size = 4
13+

0 commit comments

Comments
 (0)