Use spaces instead of tabs in files

.editorconfig:
Use spaces instead of tabs in files.
Add section for Makefile using tabs.
This commit is contained in:
David Runge 2022-07-23 00:44:54 +02:00
parent fa02de4c0c
commit 11c500a186
No known key found for this signature in database
GPG Key ID: 139B09DA5BF0D338

View File

@ -3,6 +3,14 @@ root = true
[*]
end_of_line = lf
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
[Makefile]
end_of_line = lf
charset = utf-8
indent_style = tab
indent_size = 4
insert_final_newline = true