From 8ac8629bfe3dcf1168b99baf5c3a3f99d1298eac Mon Sep 17 00:00:00 2001 From: Ian Chesal Date: Wed, 10 May 2023 17:02:33 -0400 Subject: [PATCH] feat(editorconfig): Add a .editorconfig file to the project Modern editors read this file and use it to enforce formatting consistency in files for a project. See: https://editorconfig.org/ Settings were made accoring to what is written in the CONTRIBUTING.md file. --- .editorconfig | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..d630ab92 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +# See: https://editorconfig.org/ + +root = true + +[*] +indent_style = space +indent_size = 4