FreeRTOS-Kernel/.editorconfig
Srikanth Patchava 2c9a217e87
chore: add .editorconfig for consistent code formatting
Enforce consistent 4-space indentation for C source files
and proper line ending handling.
2026-05-11 13:09:25 -07:00

21 lines
291 B
INI

root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
[*.{c,h,cpp,hpp}]
indent_style = space
indent_size = 4
[*.{yml,yaml}]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
[Makefile]
indent_style = tab