From 2a4f423e110d94b741e251635fd378b8b6daa535 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Wed, 28 Apr 2021 18:02:34 -0400 Subject: add https://EditorConfig.org setup to ensure consistent style Mostly here to make sure people continue to use tabbed indents for php and the TAP tests, since that is what they are currently using. Signed-off-by: Eli Schwartz --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..5a751aad --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# EditorConfig configuration for aurweb +# https://EditorConfig.org + +# Top-most EditorConfig file +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +[*.{php,t}] +indent_style = tab -- cgit v1.2.3-24-g4f1b