Files
build/.editorconfig
2023-01-03 01:11:49 +01:00

51 lines
957 B
INI

# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = tab
indent_size = 8
trim_trailing_whitespace = false
insert_final_newline = true
[*.md]
indent_style = space
indent_size = 4
insert_final_newline = false
[*.json]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false
insert_final_newline = true
# Custom Armbian formatting for bash sources and configuration
[*.{sh,inc,conf,eos,wip,tvb,csc}]
indent_style = tab
indent_size = 4
shell_variant = bash
binary_next_line = false
switch_case_indent = true
space_redirects = true
keep_padding = false
function_next_line = false
# C coding style based on Linux kernel.
# https://www.kernel.org/doc/html/v5.0/process/coding-style.html
[*.c]
indent_style = tab
indent_size = 8
[*.h]
indent_style = tab
indent_size = 8
[*.{yaml,yml}]
indent_style = space
indent_size = 2
insert_final_newline = false