From: Christian Hesse Date: Mon, 23 Nov 2015 10:26:43 +0000 (+0100) Subject: add editorconfig configuration X-Git-Tag: v229~288^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1996%2Fhead;p=thirdparty%2Fsystemd.git add editorconfig configuration We want indention with spaces, so specify in editorconfig. http://editorconfig.org/ --- diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..70b6c0f1390 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# EditorConfig configuration for systemd +# http://EditorConfig.org + +# top-most EditorConfig file +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 + +# match config files, set indent to spaces with width of eight +[*.{c,h}] +indent_style = space +indent_size = 8 diff --git a/Makefile.am b/Makefile.am index cd9aea6bc8d..319d71befeb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -660,6 +660,7 @@ EXTRA_DIST += \ README.md \ autogen.sh \ .dir-locals.el \ + .editorconfig \ .vimrc \ .ycm_extra_conf.py \ .travis.yml \