From 6645139d616cd7e477e7ef3281a4ee8dd8c7d7ec Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sun, 14 Mar 2021 00:28:26 +0100 Subject: Add basic EditorConfig file Standardize use of whitespace in project files. --- .editorconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .editorconfig (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..5dad2ea1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +# EditorConfig file for ADOdb +# https://editorconfig.org/ + +root = true + +# Default file settings +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true +charset = utf-8 + +# Python build scripts +[*.py] +indent_style = space + +# Markdown files +[*.md] +indent_style = space +trim_trailing_whitespace = false -- cgit v1.3