From: Peter Knut Date: Sun, 25 Aug 2024 22:55:25 +0000 (+0200) Subject: Add .editorconfig file X-Git-Tag: v4.16.0~109 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=11e1290b5b327030234f401c70ea85fd98bd5bda;p=adminer.git Add .editorconfig file Thanks to cweiske (https://github.com/adminerevo/adminerevo/pull/163). --- diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..f862bd3b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# https://editorconfig.org/ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true + +[*.{php,css,js}] +indent_style = tab + +[*.json] +indent_style = space +indent_size = 4 + +[*.md] +indent_style = space +trim_trailing_whitespace = false +max_line_length = 120