mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
431 B
27 lines
431 B
4 years ago
|
# 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,py,sh}]
|
||
|
indent_size = 4
|
||
|
|
||
|
# .cirrus.yml, .appveyor.yml, .fuzzbuzz.yml, etc.
|
||
|
[*.yml]
|
||
|
indent_size = 2
|
||
|
|
||
|
# Makefiles
|
||
|
[{*.am,Makefile.*.include}]
|
||
|
indent_style = tab
|
||
|
|
||
|
# Autoconf scripts
|
||
|
[configure.ac]
|
||
|
indent_size = 2
|