Skip to content

Commit ab54501

Browse files
committed
editorconfig: update to match our coding style
Update editorconfig to match our coding style. Most importantly, we set up the tab width to be 8 characters instead of the default and use 2 spaces to indent YAML files.
1 parent 82b1d1d commit ab54501

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.editorconfig

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
; Check http://editorconfig.org/ for more informations
2-
; Top-most EditorConfig file
32
root = true
43

5-
; tab indentation
64
[*]
75
indent_style = tab
6+
tab_width = 8
87
trim_trailing_whitespace = true
98
insert_final_newline = true
109

11-
; 4-column space indentation
10+
[*.yml]
11+
indent_style = space
12+
indent_size = 2
13+
1214
[*.md]
1315
indent_style = space
1416
indent_size = 4

0 commit comments

Comments
 (0)