From 4848ce68b426416ea4f276332c417532163fe598 Mon Sep 17 00:00:00 2001 From: ymh Date: Sat, 1 Jun 2024 21:41:27 +0800 Subject: [PATCH] vscode workspace settings: configure markdown linter extension to ignore issues on the same line as the cursor --- .vscode/settings.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index c11bef1..fca8efd 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,9 +1,10 @@ { - "[markdown]": { - "editor.formatOnSave": true, - "editor.formatOnPaste": true - }, - "editor.codeActionsOnSave": { - "source.fixAll.markdownlint": true - } + "[markdown]": { + "editor.formatOnSave": true, + "editor.formatOnPaste": true + }, + "markdownlint.focusMode": true, + "editor.codeActionsOnSave": { + "source.fixAll.markdownlint": true + } }