From 4c34f1f702d5b115a0ceda67f78a02e740b8180e Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Tue, 20 Jun 2023 15:23:13 -0400 Subject: [PATCH] Add an editorconfig --- .editorconfig | 21 +++++++++++++++++++++ README.md | 3 +-- 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..dd4f1c7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles # between different editors and IDEs +# editorconfig.org + +root = true + +[*] +indent_style = space +indent_size = 4 + +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.bat] +end_of_line = crlf + +[*.tsv] +indent_style = tab + diff --git a/README.md b/README.md index bb0a0a4..daa77ca 100644 --- a/README.md +++ b/README.md @@ -13,5 +13,4 @@ Simply import the module. If you're using a static library version then you're s ## TODO -* Add support for other platforms. - +* Add support for other platforms (currently only supporting Windows).