From 6303a7e113238c0117121899cc7a48b22fac4cc1 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Thu, 2 Jan 2025 12:14:30 +0100 Subject: [PATCH] Make VsCode and EditorConfig best friends again .editorconfig setting states that it's ok to have trailing whitespaces in markdown files. This VsCode setting prevents it from short circuiting the editorconfig extension when it's installed. Related: - https://github.com/editorconfig/editorconfig-vscode/issues/153 - https://github.com/microsoft/vscode/issues/65663 --- .vscode/settings.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..8f1451e2 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "[markdown]": { + "files.trimTrailingWhitespace": false + } +}