2015-11-23 13:26:43 +03:00
# EditorConfig configuration for systemd
# http://EditorConfig.org
2016-02-10 14:27:35 +03:00
# NOTE: If you update this file make sure to update .dir-locals.el and .vimrc,
# too.
# Top-most EditorConfig file
2015-11-23 13:26:43 +03:00
root = true
# Unix-style newlines with a newline ending every file, utf-8 charset
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
2023-10-27 00:32:55 +03:00
[NEWS]
indent_style = space
indent_size = 4
2016-02-10 14:27:35 +03:00
# Match config files, set indent to spaces with width of eight
2015-11-23 13:26:43 +03:00
[*.{c,h}]
indent_style = space
indent_size = 8
2021-09-30 14:40:51 +03:00
max_line_length = 109
2017-08-28 17:37:23 +03:00
2023-02-21 16:22:52 +03:00
[*.sh,mkosi.build,mkosi.prepare,mkosi.postinst]
scripts: use 4 space indentation
We had all kinds of indentation: 2 sp, 3 sp, 4 sp, 8 sp, and mixed.
4 sp was the most common, in particular the majority of scripts under test/
used that. Let's standarize on 4 sp, because many commandlines are long and
there's a lot of nesting, and with 8sp indentation less stuff fits. 4 sp
also seems to be the default indentation, so this will make it less likely
that people will mess up if they don't load the editor config. (I think people
often use vi, and vi has no support to load project-wide configuration
automatically. We distribute a .vimrc file, but it is not loaded by default,
and even the instructions in it seem to discourage its use for security
reasons.)
Also remove the few vim config lines that were left. We should either have them
on all files, or none.
Also remove some strange stuff like '#!/bin/env bash', yikes.
2019-04-04 15:10:42 +03:00
indent_style = space
indent_size = 4
2017-08-28 17:37:23 +03:00
[meson.build]
indent_style = space
indent_size = 8
2020-05-26 14:06:42 +03:00
[man/*.xml]
indent_size = 2
indent_style = space
2021-09-30 14:44:26 +03:00
max_line_length = 109
2022-05-17 11:38:00 +03:00
[docs/**/*.css]
indent_style = space
indent_size = 2
[docs/**/*.html]
indent_style = space
indent_size = 2