Skip to content

Commit 18430d3

Browse files
committed
Added initial .editorconfig file.
1 parent 197bf35 commit 18430d3

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.editorconfig

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
###############################################################################
2+
# Unity Project - A Test Framework for C
3+
# .editorconfig - F. Zahn 2019
4+
###############################################################################
5+
6+
# This is the topmost .editorconfig file
7+
root = true
8+
9+
# Settings that apply to all languages / files
10+
[*]
11+
charset = utf-8
12+
indent_size = 4
13+
indent_style = space
14+
insert_final_newline = true
15+
trim_trailing_whitespace = true
16+
17+
[*.md]
18+
trim_trailing_whitespace = false
19+
20+
[*.txt]
21+
trim_trailing_whitespace = false
22+
23+
[*.rb]
24+
indent_size = 2
25+
26+
[*.yml]
27+
indent_size = 2

0 commit comments

Comments
 (0)