2023-09-12 14:47:30 +00:00
|
|
|
# Editor configuration, see http://editorconfig.org
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
2023-09-13 18:57:49 +00:00
|
|
|
charset = utf-8
|
2023-09-12 14:47:30 +00:00
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 4
|
|
|
|
|
|
|
|
# Ignore diffs/patches
|
|
|
|
[*.{diff,patch}]
|
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
indent_size = unset
|
|
|
|
|
|
|
|
[{.*,secrets}/**]
|
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
charset = unset
|
|
|
|
indent_style = unset
|
|
|
|
indent_size = unset
|
|
|
|
|
2023-09-13 18:57:49 +00:00
|
|
|
[*.c]
|
|
|
|
ident_style = space
|
|
|
|
ident_size = 4
|
2023-09-12 14:47:30 +00:00
|
|
|
|
|
|
|
[*.md]
|
|
|
|
max_line_length = off
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|