From 7784f7f2a3a0daa3ebd422e995c4cc837a860b57 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Mon, 26 Jan 2026 15:19:20 -0500 Subject: [PATCH] chore: add VS Code workspace configuration with markdown linting overrides --- aether_app_native_electron.code-workspace | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 aether_app_native_electron.code-workspace diff --git a/aether_app_native_electron.code-workspace b/aether_app_native_electron.code-workspace new file mode 100644 index 0000000..38f0c02 --- /dev/null +++ b/aether_app_native_electron.code-workspace @@ -0,0 +1,14 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "git.autofetch": true, + "markdownlint.config": { + "MD007": false, + "MD033": false + } + } +}