mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-22 21:14:15 +08:00
85736a27c8
It is perfectly valid for a patch file to have trailing spaces, when for example an empty or space-only line is appears in a hunk: if the line if part of the context, whether it be empty or with only spaces, there will aways be the leading space introduced by the patch itsef, making for a sapce-only line; if the line is space-only and removed (or added) that will also appear as a space-only line. Currently, our editorconfig wants to unconditionally drop trailing spaces, so when one edits a patch file to add their SoB and Upstream tags, such a patch would get badly mangled and would not apply, causing quite some grief and questioning (sad experience looming in the recent past here)... Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
41 lines
561 B
INI
41 lines
561 B
INI
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
indent_style = space
|
|
indent_size = 4
|
|
tab_width = 8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[DEVELOPERS]
|
|
indent_style = tab
|
|
indent_size = tab
|
|
|
|
[Config*.in*]
|
|
indent_style = tab
|
|
indent_size = tab
|
|
|
|
[linux/Config.ext.in]
|
|
indent_style = tab
|
|
indent_size = tab
|
|
|
|
[Makefile*]
|
|
indent_style = tab
|
|
indent_size = tab
|
|
|
|
[*.mk]
|
|
indent_style = tab
|
|
indent_size = tab
|
|
|
|
[*.patch]
|
|
trim_trailing_whitespace = false
|
|
|
|
[S{0..9}{0..9}*]
|
|
indent_style = tab
|
|
indent_size = tab
|
|
|
|
[*.adoc]
|
|
trim_trailing_whitespace = false
|