Skip to content

Commit 081d8cf

Browse files
committed
Add basic editorconfig file
.editorconfig: Add basic editorconfig file that enforces tabs of indent size 4 on all C and C++ files and Unix-style line feeds and a final newline on all files.
1 parent 6e6bc78 commit 081d8cf

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# EditorConfig: https://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
9+
[*.{c,cc,cpp,h}]
10+
indent_style = tab
11+
indent_size = 4

0 commit comments

Comments
 (0)