2021-02-09 08:32:50 +01:00
|
|
|
# This is the top-most EditorConfig file.
|
|
|
|
root = true
|
|
|
|
|
|
|
|
# For all files.
|
|
|
|
[*]
|
|
|
|
charset = utf-8
|
|
|
|
end_of_line = lf
|
|
|
|
indent_style = space
|
|
|
|
insert_final_newline = true
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
|
|
|
|
# Source code files
|
2024-09-12 14:39:41 +02:00
|
|
|
[*.{h,cpp,rs,py,sh}]
|
2021-02-09 08:32:50 +01:00
|
|
|
indent_size = 4
|
|
|
|
|
2024-09-12 14:39:41 +02:00
|
|
|
# .cirrus.yml, etc.
|
2021-02-09 08:32:50 +01:00
|
|
|
[*.yml]
|
|
|
|
indent_size = 2
|
|
|
|
|
2024-09-12 14:39:41 +02:00
|
|
|
# Makefiles (only relevant for depends build)
|
|
|
|
[Makefile]
|
2021-02-09 08:32:50 +01:00
|
|
|
indent_style = tab
|
|
|
|
|
2024-09-12 14:39:41 +02:00
|
|
|
# CMake files
|
|
|
|
[{CMakeLists.txt,*.cmake,*.cmake.in}]
|
2021-02-09 08:32:50 +01:00
|
|
|
indent_size = 2
|