os/.editorconfig

43 lines
774 B
INI
Raw Permalink Normal View History

2020-12-29 01:47:43 +00:00
# Editor configuration, see http://editorconfig.org
root = true
[*]
2020-12-30 08:00:12 +00:00
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
2020-12-29 01:47:43 +00:00
charset = utf-8
2024-04-19 08:56:31 +00:00
indent_style = tab
2020-12-30 08:00:12 +00:00
# Ignore diffs/patches
[*.{diff,patch}]
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
indent_size = unset
charset = unset
indent_style = unset
indent_size = unset
2020-12-30 08:00:12 +00:00
[{.*,secrets}/**]
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
charset = unset
indent_style = unset
indent_size = unset
2021-05-30 19:33:09 +00:00
[*.rom]
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
charset = unset
indent_style = unset
indent_size = unset
2020-12-30 08:00:12 +00:00
[*.py]
indent_size = 4
2020-12-29 01:47:43 +00:00
[*.md]
max_line_length = off
trim_trailing_whitespace = false