From 5de29c2fb3736963faea58d358773c70bc4bf665 Mon Sep 17 00:00:00 2001 From: Daniel Sokolowski Date: Sun, 7 Mar 2021 20:14:51 +0100 Subject: [PATCH] Add EditorConfig and ignore .DS_Store --- .editorconfig | 13 +++++++++++++ .gitignore | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..271822f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +insert_final_newline = false +trim_trailing_whitespace = false diff --git a/.gitignore b/.gitignore index 1da0818..b7108fa 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,5 @@ src/**/*.js test/**/*.js yarn.lock .idea -output \ No newline at end of file +output +.DS_Store