mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-07-23 14:48:55 +02:00
27 lines
434 B
INI
27 lines
434 B
INI
# 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
|
|
[*.{h,cpp,rs,py,sh}]
|
|
indent_size = 4
|
|
|
|
# ci.yml, etc.
|
|
[*.yml]
|
|
indent_size = 2
|
|
|
|
# Makefiles (only relevant for depends build)
|
|
[Makefile]
|
|
indent_style = tab
|
|
|
|
# CMake files
|
|
[{CMakeLists.txt,*.cmake,*.cmake.in}]
|
|
indent_size = 2
|