2022-12-26 06:42:35 +00:00
|
|
|
# editorconfig.org
|
|
|
|
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
# Unix style files
|
|
|
|
end_of_line = lf
|
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
|
|
|
|
[Makefile,Makefile.*]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 4
|
|
|
|
|
2023-01-04 14:10:06 +00:00
|
|
|
[*.cmd]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
end_of_line = crlf
|
|
|
|
|
2022-12-26 06:42:35 +00:00
|
|
|
[*.{h,cpp}]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 4
|
|
|
|
|
|
|
|
[*.rc]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
|
|
|
|
[*.{md,markdown}]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
trim_trailing_whitespace = false
|
2023-02-26 20:38:23 +00:00
|
|
|
|
|
|
|
[*.yml]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|