mirror of
https://github.com/apache/nuttx.git
synced 2025-12-06 17:23:49 +08:00
The property should be named charset, not encoding, according to editorconfig documentation. https://editorconfig.org/#supported-properties Signed-off-by: Michal Lenc <michallenc@seznam.cz>
27 lines
415 B
INI
27 lines
415 B
INI
# EditorConfig: https://EditorConfig.org
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.{c,h}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
max_line_length = 78
|
|
curly_bracket_next_line = true
|
|
indent_brace_style = GNU
|
|
|
|
[Makefile]
|
|
indent_style = tab
|
|
[Make.defs]
|
|
indent_style = tab
|
|
[Kconfig]
|
|
indent_style = tab
|
|
|
|
[*.sh]
|
|
indent_style = tab
|
|
max_line_length = 80
|