From 6152044e66062b186e2217eef3c3417abbb08d73 Mon Sep 17 00:00:00 2001 From: Mihai Dolha Date: Mon, 16 Jul 2018 13:15:57 +0300 Subject: [PATCH 1/2] Add some rudimentary formatting files --- .editorconfig | 12 ++++++++++++ mmra.code-workspace | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .editorconfig create mode 100644 mmra.code-workspace diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d6e679a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +indent_style = tab +indent_size = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false + diff --git a/mmra.code-workspace b/mmra.code-workspace new file mode 100644 index 0000000..7991a6a --- /dev/null +++ b/mmra.code-workspace @@ -0,0 +1,12 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "html.format.extraLiners": "null", + "editor.tabSize": 2, + "editor.insertSpaces": false + } +} From 66a84b93e1d7cf4268120356ae28369effa1d09d Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Sat, 22 Dec 2018 11:25:06 -0500 Subject: [PATCH 2/2] Trim trailing whitespace on .md files --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index d6e679a..6f7cfa5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,5 +8,5 @@ trim_trailing_whitespace = true insert_final_newline = true [*.md] -trim_trailing_whitespace = false +trim_trailing_whitespace = true