editorconfig: 2 space indentation for CI configuration

This commit is contained in:
Sébastien Rombauts 2019-12-26 18:45:59 +01:00
parent a8a1a2ee44
commit 8dbdbcac77

View File

@ -1,8 +1,14 @@
root = true root = true
# 4 space indentation
[*] [*]
charset = utf-8 charset = utf-8
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
insert_final_newline = true insert_final_newline = true
end_of_line = lf end_of_line = lf
# 2 space indentation for CI configuration
[*.yml]
indent_style = space
indent_size = 4