diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-11-06 14:31:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-06 14:31:11 +0100 |
commit | 26b5d1fcb1ac1e062fa16f4876f5eacdbe2c9db8 (patch) | |
tree | 20555fbc461133eacddf9b451c94ae2f8dbcdce1 /.editorconfig | |
parent | dc3c13edd1cc8a737e66dc60c5dc405c84d28616 (diff) | |
parent | 551048000f9ddfc14e6f6bf63348f49caacff8f6 (diff) | |
download | nextcloud-server-26b5d1fcb1ac1e062fa16f4876f5eacdbe2c9db8.tar.gz nextcloud-server-26b5d1fcb1ac1e062fa16f4876f5eacdbe2c9db8.zip |
Create .editorconfig (#17782)
Create .editorconfig
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..20b17067dfa --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true + +[*.php] +indent_size = 8 + +[*.md] +trim_trailing_whitespace = false |