2023-03-25 04:34:03 +08:00
|
|
|
# EditorConfig
|
|
|
|
# https://editorconfig.org
|
|
|
|
|
|
|
|
# top-most EditorConfig file
|
|
|
|
root = true
|
|
|
|
|
2024-04-06 23:55:25 +08:00
|
|
|
# Unix-style newlines with a newline ending every file, utf-8 charset, 2 space
|
2023-03-25 04:34:03 +08:00
|
|
|
# indentation, remove any whitespace characters preceding newline characters.
|
|
|
|
[*]
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
charset = utf-8
|
2024-04-06 23:55:25 +08:00
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
2023-03-25 04:34:03 +08:00
|
|
|
# for shfmt
|
|
|
|
switch_case_indent = true
|
|
|
|
binary_next_line = true
|
|
|
|
|
2024-04-06 23:55:25 +08:00
|
|
|
[*.yml]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
|
2023-03-25 04:34:03 +08:00
|
|
|
# Tab indentation (no size specified)
|
|
|
|
[Makefile]
|
|
|
|
indent_style = tab
|