]> git.ipfire.org Git - thirdparty/systemd.git/blob - .editorconfig
resolved: add missing error code check when initializing DNS-over-TLS
[thirdparty/systemd.git] / .editorconfig
1 # EditorConfig configuration for systemd
2 # http://EditorConfig.org
3
4 # NOTE: If you update this file make sure to update .dir-locals.el and .vimrc,
5 # too.
6
7 # Top-most EditorConfig file
8 root = true
9
10 # Unix-style newlines with a newline ending every file, utf-8 charset
11 [*]
12 end_of_line = lf
13 insert_final_newline = true
14 trim_trailing_whitespace = true
15 charset = utf-8
16
17 # Match config files, set indent to spaces with width of eight
18 [*.{c,h}]
19 indent_style = space
20 indent_size = 8
21
22 [*.sh]
23 indent_style = space
24 indent_size = 4
25
26 [meson.build]
27 indent_style = space
28 indent_size = 8