mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Set the maximum line length for branch description messages (`git branch --edit-description`) to 72 characters. Reviewed-by: Steffen Eiden <seiden@linux.ibm.com> Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
34 lines
488 B
INI
34 lines
488 B
INI
# Check https://editorconfig.org for details
|
|
|
|
root = true
|
|
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
charset = utf-8
|
|
indent_style = tab
|
|
tab_width = 8
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.rs]
|
|
indent_style = space
|
|
indent_size = 4
|
|
tab_width = 4
|
|
|
|
[*.sh]
|
|
shell_variant = bash # used by `shfmt`
|
|
|
|
[*.y{a,}ml]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.py]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[{Makefile,*.mak}]
|
|
indent_style = tab
|
|
|
|
[{COMMIT_EDITMSG,EDIT_DESCRIPTION}]
|
|
max_line_length = 72
|