From 4a068ae3550a6711ae63a136608244ad508eb56a Mon Sep 17 00:00:00 2001 From: Ben Hochstedler Date: Tue, 29 Dec 2020 07:30:29 -0500 Subject: [PATCH] Establish editorconfig; git ignore tgz files --- .editorconfig | 15 +++++++++++++++ .gitignore | 1 + 2 files changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..807f1898c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# See https://editorconfig.org + +# top-most editorconfig file +root = true + +# Apply these settings to all files +[*] +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +max_line_length = 70 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 44902406f..106f28c20 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules save +*.tgz