diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-07-08 11:18:08 +0300 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-07-28 13:19:02 +0300 |
commit | a2a3f6912e60c7932bad87a6d2249f0e83e637e1 (patch) | |
tree | 26a0ca7ac799c06ece9d657b634b3fea00ea6c6e /.editorconfig | |
parent | 6804d3b2a2a93fa5113c962878867b373c0358f7 (diff) |
style: convert code to systemd coding style
https://systemd.io/CODING_STYLE/
Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/.editorconfig b/.editorconfig index 1923d41..ecd6aac 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,8 +1,15 @@ root = true [*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 + +[*.{c,h}] +indent_style = space +indent_size = 8 + +[meson.build] indent_style = space indent_size = 2 -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true |